Skip to content

Commit

Permalink
Mono: reenable tests in System.ComponentModel.Composition.Registratio…
Browse files Browse the repository at this point in the history
…n that were fixed

Closes dotnet#32744
  • Loading branch information
akoeplinger committed Jul 1, 2020
1 parent 51094a8 commit 22c0edf
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public FooImporter4(IFoo fooImporter)
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void ExportInterfaceWithTypeOf1()
{
var ctx = new RegistrationBuilder();
Expand All @@ -84,7 +83,6 @@ public void ExportInterfaceWithTypeOf1()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void ExportInterfaceWithTypeOf2()
{
var ctx = new RegistrationBuilder();
Expand All @@ -100,7 +98,6 @@ public void ExportInterfaceWithTypeOf2()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void ExportInheritedInterfaceWithImplements1()
{
var ctx = new RegistrationBuilder();
Expand All @@ -116,7 +113,6 @@ public void ExportInheritedInterfaceWithImplements1()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void ExportInheritedInterfaceWithImplements2()
{
var ctx = new RegistrationBuilder();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ public class Importer
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void StandardExportInterfacesShouldWork()
{
var builder = new RegistrationBuilder();
Expand Down Expand Up @@ -83,7 +82,6 @@ public void StandardExportInterfacesShouldWork()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void StandardExportInterfacesDefaultContractShouldWork()
{ //Same test as above only using default export builder
var builder = new RegistrationBuilder();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,6 @@ public void ExportSelectorNull_ShouldThrowArgumentNull()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void InsideTheLambdaCallGetCustomAttributesShouldSucceed()
{
//Same test as above only using default export builder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ public ManyConstructorsController(
public class PartBuilderUnitTests
{
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void ManyConstructorsControllerFindLongestConstructor_ShouldSucceed()
{
var ctx = new RegistrationBuilder();
Expand Down Expand Up @@ -155,7 +154,6 @@ public void ManyConstructorsControllerFindLongestConstructor_ShouldSucceed()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void ManyConstructorsControllerFindLongestConstructorAndImportByName_ShouldSucceed()
{
var ctx = new RegistrationBuilder();
Expand Down Expand Up @@ -193,7 +191,6 @@ public void ManyConstructorsControllerFindLongestConstructorAndImportByName_Shou
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void LongestConstructorWithAttribute_ShouldSucceed()
{
var ctx = new RegistrationBuilder();
Expand All @@ -213,7 +210,6 @@ public void LongestConstructorWithAttribute_ShouldSucceed()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void LongestConstructorShortestWithAttribute_ShouldSucceed()
{
var ctx = new RegistrationBuilder();
Expand All @@ -233,7 +229,6 @@ public void LongestConstructorShortestWithAttribute_ShouldSucceed()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void AmbiguousConstructorWithAttributeAppliedToOne_ShouldSucceed()
{
var ctx = new RegistrationBuilder();
Expand All @@ -255,7 +250,6 @@ public void AmbiguousConstructorWithAttributeAppliedToOne_ShouldSucceed()


[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void AmbiguousConstructor_ShouldFail()
{
var ctx = new RegistrationBuilder();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public class Factory
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
public void RegistrationBuilder_WithExportDelegatesShouldNotThrow()
{
var rb = new RegistrationBuilder();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public DiscoveredCatalog()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32744", TestRuntimes.Mono)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/32743", TestRuntimes.Mono)]
public void ShouldSucceed()
{
var rb = new RegistrationBuilder();
Expand Down

0 comments on commit 22c0edf

Please sign in to comment.