blob: 86bc1b0fa7e46d6a98f9d0cdfea5b11f75229711 [file] [log] [blame]
package test.sample;
import org.testng.annotations.*;
/**
* This class verifies the PartialGroupTest
*
* @author cbeust
*/
public class PartialGroupVerification {
@Test
public void verify() {
assert PartialGroupTest.m_successMethod && PartialGroupTest.m_successClass
: "test1 and test2 should have been invoked both";
}
}