Skip to content

Instantly share code, notes, and snippets.

@plagelao
Created January 16, 2010 23:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plagelao/279090 to your computer and use it in GitHub Desktop.
Save plagelao/279090 to your computer and use it in GitHub Desktop.
package com.blogspot.plagelao.contracttest.implementaciones;
import com.blogspot.plagelao.contracttest.ContratoParaColecciones;
import java.util.Collection;
import java.util.HashSet;
import junit.framework.Test;
public class HashSetTest extends ContratoParaColecciones {
public HashSetTest() {
}
@Override
public Collection nuevaColeccion() {
return new HashSet();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment