01: package test.sample;
02:
03: /**
04: * This class verifies the PartialGroupTest
05: *
06: * @author cbeust
07: */
08:
09: public class PartialGroupVerification {
10: /**
11: * @testng.test
12: */
13: public void verify() {
14: assert PartialGroupTest.m_successMethod
15: && PartialGroupTest.m_successClass : "test1 and test2 should have been invoked both";
16: }
17: }
|