|
Hi, I recently saw that the older packages of coyote got deprecated. 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:
|
Answered by
pdeligia
Apr 26, 2022
Replies: 3 comments
|
I was using the version 1.3.1 |
0 replies
|
Thanks @eddynaka, these were indeed renamed/refactored in recent versions, you can replace them as follows:
Hope this helps! |
0 replies
Answer selected by
pdeligia
|
Closing for now, but if you have more questions please open an issue. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @eddynaka, these were indeed renamed/refactored in recent versions, you can replace them as follows:
WithConcurrencyFuzzingEnabledis now calledWithSystematicFuzzingEnabled.TryEmitTracesis now calledTryEmitReports.Hope this helps!