source: java2python/junit-t/assert/testcode/AssertTest.java@ 1111

Last change on this file since 1111 was 939, checked in by wouter, 4 months ago

javadoc on oldschool mechanism used

File size: 1.3 KB
Line 
1package testcode;
2
3import static org.junit.Assert.assertEquals;
4import static org.junit.Assert.assertTrue;
5
6/**
7 * This test is a bit weird/old school, it's not a junit test in java, but just
8 * assumes someone calls main function. The tests print ok if test succeeded
9 * This mechanism should be used only in core as there is no @Test available
10 * there.
11 *
12 */
13public class AssertTest {
14
15 public AssertTest() {
16 test1();
17 test2();
18 testAssertTrue();
19 }
20
21 /**
22 * The test code for Value
23 *
24 * @throws Exception
25 */
26 public static void main(String[] args) throws Exception {
27 new AssertTest();
28 }
29
30 public static void test1() {
31 assertEquals(1, 1);
32 System.out.println("1ok");
33 }
34
35 public static void test2() {
36 try {
37 assertEquals("not equal", 1, 2);
38 System.out.println("Test did not fail properly");
39 return;
40 } catch (AssertionError e) {
41 if (!e.getMessage().contains("not equal")) {
42 System.out.println(
43 "Test threw as expected but message does not contain 'not equal'");
44 return;
45 }
46 System.out.println("2ok");
47 }
48 }
49
50 public static void testAssertTrue() {
51 try {
52 assertTrue("not true", false);
53 System.out.println("3ko");
54 } catch (AssertionError e) {
55 if (!e.getMessage().contains("not true"))
56 System.out.println("3missing message");
57 else
58 System.out.println("3ok");
59 }
60 }
61}
Note: See TracBrowser for help on using the repository browser.