コード例 #1
0
 public async Task NonWindowsOS(
     ServerType serverType,
     RuntimeArchitecture architecture,
     ApplicationType applicationType,
     bool noSource)
 {
     var testRunner = new PublishAndRunTests(_output);
     await testRunner.Publish_And_Run_Tests(
         serverType, architecture, applicationType, noSource);
 }
コード例 #2
0
 public async Task NonWindowsOS(
     ServerType serverType,
     RuntimeFlavor runtimeFlavor,
     RuntimeArchitecture architecture,
     string applicationBaseUrl,
     bool noSource)
 {
     var testRunner = new PublishAndRunTests(_logger);
     await testRunner.Publish_And_Run_Tests(
         serverType, runtimeFlavor, architecture, applicationBaseUrl, noSource);
 }
コード例 #3
0
ファイル: PublishAndRunTests.cs プロジェクト: zamd/MusicStore
 public async Task Publish_And_Run_Tests_On_Mono(
     ServerType serverType,
     RuntimeFlavor runtimeFlavor,
     RuntimeArchitecture architecture,
     string applicationBaseUrl,
     bool noSource)
 {
     var testRunner = new PublishAndRunTests();
     await testRunner.Publish_And_Run_Tests(
         serverType, runtimeFlavor, architecture, applicationBaseUrl, noSource);
 }
コード例 #4
0
 public async Task WindowsOS(
     ServerType serverType,
     RuntimeFlavor runtimeFlavor,
     RuntimeArchitecture architecture,
     ApplicationType applicationType,
     string applicationBaseUrl,
     bool noSource)
 {
     var testRunner = new PublishAndRunTests(_logger);
     await testRunner.Publish_And_Run_Tests(
         serverType, runtimeFlavor, architecture, applicationType, applicationBaseUrl, noSource);
 }