1 package test.objectfactory; 2 3 import org.testng.Assert; 4 import org.testng.annotations.Test; 5 6 public class ClassObjectFactorySampleTest { 7 public static int m_n = 0; 8 9 /** 10 * Will be invoked with 42 by the factory. 11 */ ClassObjectFactorySampleTest(int n)12 public ClassObjectFactorySampleTest(int n) { 13 m_n = n; 14 } 15 16 @Test f()17 public void f() { 18 Assert.assertEquals(42, m_n); 19 } 20 } 21