• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.pkg2;
2 
3 import test.pkg.PackageTest;
4 
5 
6 public class Test2 {
Test2(float afloat)7   private Test2(float afloat) {
8     PackageTest.NON_TEST_CONSTRUCTOR= true;
9   }
10 
nonTestMethod()11   public void nonTestMethod() {
12   }
13 }
14