コード例 #1
0
ファイル: SetTest.java プロジェクト: SabinaIdrisova/Homeworks
 /** Test of print method, of class Set. */
 @Test(expected = EmptySetException.class)
 public void testPrint() throws Exception {
   Set<String> set = new Set<String>();
   set.print();
 }