Skip to content

Commit

Permalink
Removed debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnhatch committed Jun 19, 2024
1 parent a1f6f55 commit 549243d
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,16 +219,9 @@ private void probeMethodTest(Method testMethod, UnitTestMethod unitTestMethod) {

private void probeTestClass(Class<?> c) {

boolean debugClass = c.getSimpleName().equals("AT_BetaSampleDistribution");

final Method[] methods = c.getMethods();
for (final Method testMethod : methods) {

boolean debugMethod = debugClass && testMethod.getName().equals("testSample");
if(debugMethod) {
System.out.println("MetaInfoGenerator.probeTestClass()");
}


final Test test = testMethod.getAnnotation(Test.class);
final UnitTestMethod unitTestMethod = testMethod.getAnnotation(UnitTestMethod.class);
final UnitTestConstructor unitTestConstructor = testMethod.getAnnotation(UnitTestConstructor.class);
Expand Down

0 comments on commit 549243d

Please sign in to comment.