Intro to Spring Groovy Update and Merge (#1369)

* javaslang updates

* updated repo

* clean

* clean

* clean

* clean
This commit is contained in:
Andrew Evans
2017-03-12 04:24:07 -06:00
committed by adamd1985
parent 2f3f490453
commit dc142e8423
6 changed files with 106 additions and 0 deletions
@@ -0,0 +1,38 @@
package com.baeldug.spring_groovy;
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 );
}
}