blob: aa3454b6d17839db2481d835c9f7fabc6e9ffada [file] [log] [blame]
package test.uniquesuite;
import org.testng.Assert;
import org.testng.annotations.Test;
public class TestBefore2 extends BaseBefore {
@Test
public void verify() {
Assert.assertEquals(m_beforeCount, 1);
}
}