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