15 lines
215 B
Java
Raw Normal View History

package com.iluwatar.doublechecked.locking;
import org.junit.Test;
import com.iluwatar.doublechecked.locking.App;
2015-04-23 22:35:58 +03:00
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}