Home | History | Annotate | Download | only in util

Lines Matching refs:result

36         Vector<String> result = new Vector<String>();
38 result.addElement(keys.nextElement());
40 assertTrue("Missing key parent1", result.contains("parent1"));
41 assertTrue("Missing key parent2", result.contains("parent2"));
42 assertTrue("Missing key parent3", result.contains("parent3"));
43 assertTrue("Missing key parent4", result.contains("parent4"));
44 assertTrue("Missing key child1", result.contains("child1"));
45 assertTrue("Missing key child2", result.contains("child2"));
46 assertTrue("Missing key child3", result.contains("child3"));
56 Vector result = new Vector();
58 result.addElement(bundle.handleGetObject((String)keys.nextElement()));
60 assertEquals(9, result.size());
61 assertTrue(result.contains(null));
62 assertTrue(result.contains("frFRVARValue4"));
63 assertTrue(result.contains("frFRVARChildValue1"));
64 assertTrue(result.contains("frFRVARChildValue2"));
65 assertTrue(result.contains("frFRVARChildValue3"));
66 assertTrue(result.remove(null));
67 assertTrue(result.remove(null));
68 assertTrue(result.remove(null));