package hash; import org.junit.Test; import static org.junit.Assert.*; public class IsIsomorphicTest { @Test public void isIsomorphic() { String s = "egg", t = "add"; IsIsomorphic solution = new IsIsomorphic(); solution.isIsomorphic(s,t); } }