555657585960616263
// test methods public void testHasValue() throws Exception { String a = "a"; String b = "b"; Pair p = new Pair( "a", "b" ); assertEquals( "a", p.getFirst() ); assertEquals( "b", p.getSecond() ); }