Skip to content

Commit 827ff6b

Browse files
Update InstallAndRunTests.cs
1 parent d9774de commit 827ff6b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/MSBuildDeviceIntegration/Tests/InstallAndRunTests.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ public void Teardown ()
3030
}
3131

3232
[Test]
33-
public void DotNetRun ([Values (true, false)] bool isRelease, [Values ("llvm-ir", "managed")] string typemapImplementation)
33+
[TestCase (true, "llvm-ir")]
34+
[TestCase (false, "llvm-ir")]
35+
[TestCase (true, "managed")]
36+
// NOTE: TypeMappingStep is not yet setup for Debug mode
37+
//[TestCase (false, "managed")]
38+
public void DotNetRun (bool isRelease, string typemapImplementation)
3439
{
3540
var proj = new XamarinAndroidApplicationProject {
3641
IsRelease = isRelease

0 commit comments

Comments
 (0)