0% found this document useful (0 votes)
13 views1 page

Unit Test for Simple App

The document is a Java unit test class named AppTest that extends TestCase. It includes a method to create a test suite and a simple test method that always passes. The test is designed to verify the functionality of an application in a straightforward manner.

Uploaded by

rajk.71772218l06
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views1 page

Unit Test for Simple App

The document is a Java unit test class named AppTest that extends TestCase. It includes a method to create a test suite and a simple test method that always passes. The test is designed to verify the functionality of an application in a straightforward manner.

Uploaded by

rajk.71772218l06
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

package com.

Ost;

import [Link];
import [Link];
import [Link];

/**
* 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( [Link] );
}

/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}

You might also like