#nullable enable namespace UnitTests_Parallelizable.ConfigurationTests; public class ConfigurationManagerTests { [ConfigurationProperty (Scope = typeof (CMTestsScope))] public static bool? TestProperty { get; set; } private class CMTestsScope : Scope { } [Fact] public void GetConfigPropertiesByScope_Gets () { var props = ConfigurationManager.GetUninitializedConfigPropertiesByScope ("CMTestsScope"); Assert.NotNull (props); Assert.NotEmpty (props); } }