Created
January 16, 2010 23:43
-
-
Save plagelao/279090 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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