1 /* 2 * @(#) TestClass.java 3 * Created: Aug 10, 2011 4 * By: Wolfgang & Monika Baltes 5 * Copyright 2011 Wolfgang Baltes 6 * WOLFGANG & MONIKA BALTES PROPRIETARY/CONFIDENTIAL. 7 * Use is subject to license terms. 8 */ 9 package test.preserveorder; 10 11 import org.testng.Assert; 12 import org.testng.annotations.Test; 13 14 15 /** 16 * @author Wolfgang Baltes 17 * 18 */ 19 public class TestClass { 20 21 private final int val; 22 TestClass(final int val)23 public TestClass(final int val) { 24 this.val = val; 25 } 26 27 @Test 28 public void checkVal()29 checkVal() { 30 Assert.assertTrue(this.val != 0); 31 } 32 33 } 34