Disable GetPropertyValues_NotStoredProperty_ValueEqualsNull test (dotnet/corefx#37420)
authorStephen Toub <stoub@microsoft.com>
Fri, 3 May 2019 21:34:24 +0000 (17:34 -0400)
committerGitHub <noreply@github.com>
Fri, 3 May 2019 21:34:24 +0000 (17:34 -0400)
* Disable GetPropertyValues_NotStoredProperty_ValueEqualsNull test

* Disable the other test as well

Commit migrated from https://github.com/dotnet/corefx/commit/3c13f6e53bd57db3a75c8ddbbf2be6b3b6b7c934

src/libraries/System.Configuration.ConfigurationManager/tests/System/Configuration/LocalFileSettingsProviderTests.cs

index bad2571..1f51ce1 100644 (file)
@@ -15,6 +15,7 @@ namespace System.ConfigurationTests
             ["SettingsKey"] = "SettingsKeyFoo"
         };
 
+        [ActiveIssue(37364)]
         [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotNetNativeRunningAsConsoleApp))]
         public void GetPropertyValues_NotStoredProperty_ValueEqualsNull()
         {
@@ -30,6 +31,7 @@ namespace System.ConfigurationTests
             Assert.Equal(null, propertyValues["PropertyName"].PropertyValue);
         }
 
+        [ActiveIssue(37364)]
         [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotNetNativeRunningAsConsoleApp))]
         public void GetPropertyValues_NotStoredConnectionStringProperty_ValueEqualsEmptyString()
         {
@@ -47,4 +49,4 @@ namespace System.ConfigurationTests
             Assert.Equal(string.Empty, propertyValues["PropertyName"].PropertyValue);
         }
     }
-}
\ No newline at end of file
+}