#50868 enable configuration json tests on Android (#74647)
authorMeri Khamoyan <96171496+mkhamoyan@users.noreply.github.com>
Mon, 29 Aug 2022 15:55:18 +0000 (19:55 +0400)
committerGitHub <noreply@github.com>
Mon, 29 Aug 2022 15:55:18 +0000 (19:55 +0400)
src/libraries/Microsoft.Extensions.Configuration.Json/tests/JsonConfigurationExtensionsTest.cs
src/libraries/Microsoft.Extensions.Configuration.Json/tests/JsonConfigurationTest.cs

index e1558d7..ba37d44 100644 (file)
@@ -12,7 +12,6 @@ namespace Microsoft.Extensions.Configuration.Json
         [Theory]
         [InlineData(null)]
         [InlineData("")]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/50868", TestPlatforms.Android)]
         public void AddJsonFile_ThrowsIfFilePathIsNullOrEmpty(string path)
         {
             // Arrange
@@ -25,7 +24,6 @@ namespace Microsoft.Extensions.Configuration.Json
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/50868", TestPlatforms.Android)]
         public void AddJsonFile_ThrowsIfFileDoesNotExistAtPath()
         {
             // Arrange
index dc17b5f..2e3fe00 100644 (file)
@@ -152,7 +152,6 @@ namespace Microsoft.Extensions.Configuration
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/50868", TestPlatforms.Android)]
         public void ThrowExceptionWhenUnexpectedEndFoundBeforeFinishParsing()
         {
             var json = @"{
@@ -167,7 +166,6 @@ namespace Microsoft.Extensions.Configuration
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/50868", TestPlatforms.Android)]
         public void ThrowExceptionWhenMissingCurlyBeforeFinishParsing()
         {
             var json = @"
@@ -200,7 +198,6 @@ namespace Microsoft.Extensions.Configuration
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/50868", TestPlatforms.Android)]
         public void JsonConfiguration_Throws_On_Missing_Configuration_File()
         {
             var config = new ConfigurationBuilder().AddJsonFile("NotExistingConfig.json", optional: false);
@@ -217,7 +214,6 @@ namespace Microsoft.Extensions.Configuration
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/50868", TestPlatforms.Android)]
         public void ThrowFormatExceptionWhenFileIsEmpty()
         {
             var exception = Assert.Throws<FormatException>(() => LoadProvider(@""));