1 2 package test.sample; 3 4 import org.testng.annotations.Test; 5 6 /** 7 * This class verifies the PartialGroupTest 8 * 9 * @author cbeust 10 */ 11 12 public class PartialGroupVerification { 13 @Test verify()14 public void verify() { 15 assert PartialGroupTest.m_successMethod && PartialGroupTest.m_successClass 16 : "test1 and test2 should have been invoked both"; 17 } 18 }