Searched refs:m_afterClass (Results 1 – 5 of 5) sorted by relevance
20 private boolean m_afterClass = false; field in ConfigurationTest29 assert ! m_afterClass : "afterClass shouldn't have run"; in beforeSuite()41 assert ! m_afterClass : "afterClass shouldn't have run"; in beforeClass()53 assert ! m_afterClass : "afterClass shouldn't have run"; in beforeMethod()66 assert ! m_afterClass : "afterClass shouldn't have run"; in afterMethod()78 assert ! m_afterClass : "afterClass shouldn't have run"; in afterClass()80 m_afterClass = true; in afterClass()87 + " " + m_afterMethod + " " + m_afterClass + " " + m_afterSuite); in afterSuite()92 assert m_afterClass : "afterClass should have run"; in afterSuite()104 assert ! m_afterClass : "afterClass shouldn't have run"; in verify()
9 private static int m_afterClass = 0; field in Basic220 m_afterClass = 0; in cleanUp()30 m_afterClass++; in checkTestAtClassLevelWasRun()32 …assert 1 == m_afterClass : "After class should have been called exactly once, not " + m_afterClass; in checkTestAtClassLevelWasRun()
24 m_afterClass = true; in afterClass()33 assert ! m_afterClass : "afterClass configuration must not be called before test method"; in test1()40 assert ! m_afterClass : "afterClass configuration must not be called before test method"; in test2()47 assert ! m_afterClass : "afterClass configuration must not be called before test method"; in test3()
6 protected boolean m_afterClass = false; field in BaseAfterClassCalledAtEnd10 assert m_afterClass : "This afterClass method should have been called last"; in baseAfterClass()
20 private List<ITestNGMethod> m_afterClass = Lists.newArrayList(); field in JUnitTestClass137 return m_afterClass.toArray(new ITestNGMethod[m_afterClass.size()]); in getAfterClassMethods()