Hi,
I recently saw that the older packages of coyote got deprecated.
I was using something like this:
public void AnalyzeCommandBase_ShouldGenerateSameResultsWhenRunningSingleAndMultithreaded_CoyoteTest()
{
Configuration config = Configuration.Create().WithTestingIterations(100).WithConcurrencyFuzzingEnabled();
var engine = TestingEngine.Create(config, AnalyzeCommandBase_ShouldGenerateSameResultsWhenRunningSingleAndMultiThread_CoyoteHelper);
string TestLogDirectory = ".";
engine.Run();
TestReport report = engine.TestReport;
var filenames = new List<string>(engine.TryEmitTraces(TestLogDirectory, "AnalyzeCommandBase_ShouldGenerateSameResultsWhenRunningSingleAndMultiThread_CoyoteTest_Log"));
foreach (string item in filenames)
{
Output.WriteLine("See log file: {0}", item);
}
Assert.True(report.NumOfFoundBugs == 0, $"Coyote found {report.NumOfFoundBugs} bug(s).");
}
The issues:
- WithConcurrencyFuzzingEnabled got removed and I don't see any documentation on what to replace it with.
- TryEmitTraces got removed and I don't see any documentation on what to replace it with.
Hi,
I recently saw that the older packages of coyote got deprecated.
I was using something like this:
The issues: