blob: 545e0be73b38990864cabf64f3ac89b2f885cdd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
*
*/
package de.fhswf.in.inf.java1.aufgabe13;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* Test the assignments from paper 11 and 12.
*
* @author $Author: $
* @version $Revision: $, $Date: $ UTC
*/
@RunWith(Suite.class)
@SuiteClasses({ BinaryOperatorTests.class, GeneralTests.class,
UnaryOperatorTests.class })
public class UPNTestSuite
{
}
|