Skip to content

Commit

Permalink
Disable unit tests with SRM NuGet packages until avaialble on nuget.org
Browse files Browse the repository at this point in the history
  • Loading branch information
MichielOda committed Jan 11, 2024
1 parent cd3d3fd commit 0c343d6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Assemblers.AutomationTests/AutomationScriptBuilderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -255,13 +255,12 @@ public async Task SLDisCompiler_AutomationScriptBuilder_DllImportsAsync()
<Exe id=""1"" type=""csharp"">
<Value><![CDATA[using System;]]></Value>
<Param type=""ref"">System.Data.dll</Param>
<Param type=""ref"">System.Runtime.Caching.dll</Param>
</Exe>
</Script>
</DMSScript>";

var projectFiles = new[] { new ProjectFile("Script.cs", "using System;") };
var references = new[] { new Reference("System.Data.dll"), new Reference("System.Runtime.Caching.dll") };
var references = new[] { new Reference("System.Data.dll") };
var project1 = new Project("Script_1", projectFiles: projectFiles, references: references);

var projects = new Dictionary<string, Project>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@ public static string MakeUppercase(string input)
Assert.AreEqual(expectedResult, result[0].Value.Document);
}

[Ignore("Wait for a version that is available on nuget.org (SRM)")]
[TestMethod]
public async Task AutomationScriptCompilerUsingNuGetPackages_Solution8_SrmAsync()
{
Expand Down Expand Up @@ -409,7 +410,8 @@ public async Task AutomationScriptCompilerUsingNuGetPackages_Solution8_SrmAsync(

generatedEntries.Should().BeEquivalentTo(expectedEntries);
}


[Ignore("Wait for a version that is available on nuget.org (SRM)")]
[TestMethod]
public async Task AutomationScriptCompilerUsingNuGetPackages_Solution9_SrmAsDependencyAsync()
{
Expand Down
1 change: 1 addition & 0 deletions Assemblers.ProtocolTests/ProtocolBuilderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,7 @@ public async Task ProtocolCompiler_ProtocolBuilder_SpecialCharactersAsync()
Assert.IsFalse(d.HasDifferences(), d.ToString());
}

[Ignore("Wait for a version that is available on nuget.org (SRM)")]
[TestMethod]
public async Task ProtocolCompiler_Solution_Build()
{
Expand Down

0 comments on commit 0c343d6

Please sign in to comment.