1
0
Fork 0
mirror of https://gitlab.com/kauron/jstudy synced 2026-03-13 10:21:43 +01:00

Initial commit

This commit is contained in:
Carlos Galindo 2016-06-12 00:20:11 +02:00
commit a39aaca33e
Signed by: kauron
GPG key ID: 83E68706DEE119A3
25 changed files with 973 additions and 0 deletions

View file

@ -0,0 +1,38 @@
package es.kauron.jstudy;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
public class AppTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public AppTest( String testName )
{
super( testName );
}
/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( AppTest.class );
}
/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}

12
src/test/test.iml Normal file
View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/java" isTestSource="true" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Maven: junit:junit:3.8.1" level="project" />
</component>
</module>