This is my coded step in my main test:
public void SubtestRunner()
{
// Execute test 'WorkoutOptionResults'
//this.ExecuteTest("WorkoutOptionResults.tstest");
if (string.IsNullOrWhiteSpace(Data["WOR-XXX"].ToString()))
{
Log.WriteLine("Error Msg.");
}
else
{
Log.WriteLine("Info Msg");
this.ExecuteTest("WorkoutOptionResults.tstest");
}
}
This is the error I got:
System.IO.FileNotFoundException: Unable to find the code behind assembly. Please make sure you have compiled your code behind without errors before attempting to execute the test. Looking for: D:\Users\xxxx\documents\visual studio 2015\Projects\projectfolder\project\bin\Debug\
at ArtOfTest.WebAii.Design.Execution.ExecutionUtils.EnsureAssemblyExists(String assembly, String folder)
at ArtOfTest.WebAii.Design.Execution.ExecutionUtils.CreateCodedTestInstance(Test test, TestResult result, String binariesFolder)
at ArtOfTest.WebAii.Design.Execution.ExecutionEngine.InternalExecuteTest(Test test, TestResult initializationResult)
at ArtOfTest.WebAii.Design.Execution.ExecutionEngine.ExecuteTestInCurrentContext(Test test)
I've looked at some of the other responses out there, and (1) have Copy Always turned on. (2) I am unable to figure out how to enable deployment because I cannot seem to make a settings file that opens with the UI shown in other examples.
Any help would be great!
Michael
