diff --git a/dist/7.x/executionflow-7.1.1.jar b/dist/7.x/executionflow-7.1.1.jar index e17d8ddf..830eecce 100644 Binary files a/dist/7.x/executionflow-7.1.1.jar and b/dist/7.x/executionflow-7.1.1.jar differ diff --git a/src/main/aspect/wniemiec/app/executionflow/runtime/hook/ConstructorHook.aj b/src/main/aspect/wniemiec/app/executionflow/runtime/hook/ConstructorHook.aj index a87f8256..2e99c478 100644 --- a/src/main/aspect/wniemiec/app/executionflow/runtime/hook/ConstructorHook.aj +++ b/src/main/aspect/wniemiec/app/executionflow/runtime/hook/ConstructorHook.aj @@ -82,7 +82,7 @@ public aspect ConstructorHook extends RuntimeHook { } before(): insideTestedConstructor() { - /*if (!isValidConstructor(thisJoinPoint)) + if (!isValidConstructor(thisJoinPoint)) return; parseConstructorInfo(thisJoinPoint); @@ -90,7 +90,7 @@ public aspect ConstructorHook extends RuntimeHook { if (!wasConstructorAlreadyParsed() && hasSourceAndBinearyPath()) { collectConstructor(thisJoinPoint); markConstructorAsParsed(); - }*/ + } } diff --git a/src/main/aspect/wniemiec/app/executionflow/runtime/hook/MethodCallHook.aj b/src/main/aspect/wniemiec/app/executionflow/runtime/hook/MethodCallHook.aj index 502692f3..26fa1843 100644 --- a/src/main/aspect/wniemiec/app/executionflow/runtime/hook/MethodCallHook.aj +++ b/src/main/aspect/wniemiec/app/executionflow/runtime/hook/MethodCallHook.aj @@ -85,15 +85,15 @@ public aspect MethodCallHook extends RuntimeHook { if (isNativeMethod(getSignature(thisJoinPoint)) || !isValidSignature(thisJoinPoint)) return; - //collectInvoked(thisJoinPoint); + collectInvoked(thisJoinPoint); } before(): invokedMethodByTestedInvoker() { if (!isMethod(thisJoinPoint) || isNativeMethod(getSignature(thisJoinPoint)) || !wasTestedInvokedCollected()) return; - //CallCollector callCollector = CallCollector.getInstance(); - //callCollector.collectCall(extractMethodCalledSignature(thisJoinPoint), invoked); + CallCollector callCollector = CallCollector.getInstance(); + callCollector.collectCall(extractMethodCalledSignature(thisJoinPoint), invoked); }