protected void AssertDebuggeeExeExists(ITestOutputHelper output)
 {
     AssertX.FileExists("debuggee exe", DebuggeeBinaryExePath, output);
 }
 protected void AssertDebuggeeDllExists(ITestOutputHelper output)
 {
     AssertX.FileExists("debuggee dll", DebuggeeBinaryDllPath, output);
 }
 protected void AssertDebuggeeSolutionDirExists(ITestOutputHelper output)
 {
     AssertX.DirectoryExists("debuggee solution directory", DebuggeeSolutionDirPath, output);
 }
 protected void AssertDebuggeeProjectDirExists(ITestOutputHelper output)
 {
     AssertX.DirectoryExists("debuggee project directory", DebuggeeProjectDirPath, output);
 }
Beispiel #5
0
 protected override void AssertDebuggeeProjectFileExists(ITestOutputHelper output)
 {
     AssertX.FileExists("debuggee csproj", Path.Combine(DebuggeeProjectDirPath, DebuggeeName + ".csproj"), output);
 }
Beispiel #6
0
 protected override void AssertDebuggeeAssetsFileExists(ITestOutputHelper output)
 {
     AssertX.FileExists("debuggee project.assets.json", Path.Combine(DebuggeeProjectDirPath, "obj", "project.assets.json"), output);
 }