function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Prabhat Singh 56Prabhat Singh 56 

I have a code

@isTest 
private class CheckRecursive_Test { 
static testMethod void CheckVarChanging() { 
Boolean result; 
result = checkRecursive.runOnce(); 
System.assert(result,'Result should have been true.'); 
result = null; 
result = checkRecursive.runOnce(); 
System.assert(!result,'Result should have been false.'); 
result = null; 
result = checkRecursive.runOnce(); 
System.assert(!result,'Result should have been false again.'); 



it is continually generating log files.

The behavior has been occurring since 7 am this morning. So far, it as not been stopped by CPU time limits, DML limits, or recursion limits.

Please suggest me the best.
SidhantSidhant
Have you tried aborting the running tests http://screencast.com/t/Xn4zVFKWX0dU ?