示例#1
0
 /** Test of print method, of class Set. */
 @Test(expected = EmptySetException.class)
 public void testPrint() throws Exception {
   Set<String> set = new Set<String>();
   set.print();
 }