We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c81830b commit 90c5d47Copy full SHA for 90c5d47
src/FluentNHibernate.Testing/Cfg/Db/PersistenceConfigurationTester.cs
@@ -39,15 +39,16 @@ public void ConfigureProperties_should_not_override_values_already_set()
39
40
}
41
42
+#pragma warning disable 612,618
43
[Test]
44
public void ConfigureProperties_should_override_values_already_set_with_values_set_in_code()
45
{
46
_nhibConfig = new Configuration();
47
_nhibConfig.Properties["proxyfactory.factory_class"] = "foo";
48
_config.ProxyFactoryFactory("bar").ConfigureProperties(_nhibConfig);
49
ValueOf("proxyfactory.factory_class").ShouldEqual("bar");
-
50
51
+#pragma warning restore 612,618
52
53
54
public void Setting_raw_values_should_populate_dictionary()
0 commit comments