Add Python demo for showing how to embed Python in Java
[jython-java-sample.git] / src / test / java / com / smartitengineering / demo / jython / test / AppTest.java
blob6df2a2991e8d6b8fed2b4787eb43e3896150ddc8
1 package com.smartitengineering.demo.jython.test;
3 import junit.framework.Test;
4 import junit.framework.TestCase;
5 import junit.framework.TestSuite;
7 /**
8 * Unit test for simple App.
9 */
10 public class AppTest
11 extends TestCase
13 /**
14 * Create the test case
16 * @param testName name of the test case
18 public AppTest( String testName )
20 super( testName );
23 /**
24 * @return the suite of tests being tested
26 public static Test suite()
28 return new TestSuite( AppTest.class );
31 /**
32 * Rigourous Test :-)
34 public void testApp()
36 assertTrue( true );