コード例 #1
0
 public async Task NonWindowsOS(
     ServerType serverType,
     RuntimeArchitecture architecture,
     ApplicationType applicationType)
 {
     var smokeTestRunner = new SmokeTests(_output);
     await smokeTestRunner.SmokeTestSuite(serverType, architecture, applicationType);
 }
コード例 #2
0
ファイル: SmokeTests.cs プロジェクト: leloulight/MusicStore
 public async Task NonWindowsOS(
     ServerType serverType,
     RuntimeFlavor runtimeFlavor,
     RuntimeArchitecture architecture,
     string applicationBaseUrl)
 {
     var smokeTestRunner = new SmokeTests();
     await smokeTestRunner.SmokeTestSuite(serverType, runtimeFlavor, architecture, applicationBaseUrl);
 }
コード例 #3
0
 public async Task SmokeTestSuite_On_IIS_X86(
     ServerType serverType,
     RuntimeArchitecture architecture,
     ApplicationType applicationType)
 {
     var smokeTestRunner = new SmokeTests(_output);
     await smokeTestRunner.SmokeTestSuite(
         serverType, architecture, applicationType, noSource : true);
 }
コード例 #4
0
ファイル: SmokeTests.cs プロジェクト: leloulight/MusicStore
 public async Task NonWindowsOS(
     ServerType serverType,
     RuntimeFlavor runtimeFlavor,
     RuntimeArchitecture architecture,
     string applicationBaseUrl)
 {
     var smokeTestRunner = new SmokeTests();
     await smokeTestRunner.SmokeTestSuite(serverType, runtimeFlavor, architecture, applicationBaseUrl);
 }
コード例 #5
0
ファイル: SmokeTests.cs プロジェクト: leloulight/MusicStore
 public async Task SmokeTestSuite_On_IIS_X86(
     ServerType serverType,
     RuntimeFlavor runtimeFlavor,
     RuntimeArchitecture architecture,
     string applicationBaseUrl)
 {
     var smokeTestRunner = new SmokeTests();
     await smokeTestRunner.SmokeTestSuite(
         serverType, runtimeFlavor, architecture, applicationBaseUrl, noSource : true);
 }
コード例 #6
0
 public async Task SmokeTestSuite_On_NativeModule_AMD64(ServerType serverType, RuntimeFlavor runtimeFlavor, RuntimeArchitecture architecture, string applicationBaseUrl)
 {
     var smokeTestRunner = new SmokeTests();
     await smokeTestRunner.SmokeTestSuite(serverType, runtimeFlavor, architecture, applicationBaseUrl);
 }
コード例 #7
0
 public async Task SmokeTestSuite_On_IIS_X86(ServerType serverType, RuntimeFlavor runtimeFlavor, RuntimeArchitecture architecture, string applicationBaseUrl)
 {
     var smokeTestRunner = new SmokeTests();
     await smokeTestRunner.SmokeTestSuite(serverType, runtimeFlavor, architecture, applicationBaseUrl, noSource: true);
 }
コード例 #8
0
 public async Task SmokeTestSuite_On_NativeModule_AMD64(ServerType serverType, RuntimeFlavor runtimeFlavor, RuntimeArchitecture architecture, string applicationBaseUrl)
 {
     var smokeTestRunner = new SmokeTests();
     await smokeTestRunner.SmokeTestSuite(serverType, runtimeFlavor, architecture, applicationBaseUrl);
 }