blob: 985e56d9895d597e4d93474e6e51ee89be4f6f6f [file] [log] [blame]
package test.privatemethod;
import org.testng.Assert;
import org.testng.annotations.Test;
public class PrivateMethodTest {
public PrivateMethodTest(String name, int value) {
}
private int privateMethod() {
return 1;
}
public static class PrivateMethodInnerTest {
@Test
public void testPrivateMethod() {
PrivateMethodTest pmt = new PrivateMethodTest("aname", 1);
int returnValue = pmt.privateMethod();
Assert.assertEquals(returnValue, 1);
}
}
}