adding a test case
[IRC.git] / Robust / src / Tests / IntegerTest.java
1 public class IntegerTest {
2     public static void main(String[] str) {
3         Integer i=new Integer("312");
4         System.printString(i.toString());
5         System.printString("\n");
6         System.printInt(Integer.parseInt("-34"));
7         System.printString("\n");
8     }
9
10
11 }