Completed Tolerant Reader example.

This commit is contained in:
Ilkka Seppala
2015-04-29 18:50:08 +03:00
parent 113e1a2f22
commit b58311aedf
5 changed files with 74 additions and 28 deletions

View File

@ -1,12 +1,14 @@
package com.iluwatar;
import java.io.IOException;
import org.junit.Test;
public class AppTest {
@Test
public void test() {
public void test() throws ClassNotFoundException, IOException {
String[] args = {};
App.main(args);
}