We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fab4c4 commit bc2f4aaCopy full SHA for bc2f4aa
src/FluentNHibernate.Specs/Extensions.cs
@@ -14,16 +14,6 @@ public static T As<T>(this object instance)
14
return (T)instance;
15
}
16
17
- public static void ShouldContain<T>(this IEnumerable<T> collection, Func<T, bool> predicate)
18
- {
19
- collection.Any(predicate).ShouldBeTrue();
20
- }
21
-
22
- public static void ShouldNotContain<T>(this IEnumerable<T> collection, Func<T, bool> predicate)
23
24
- collection.Any(predicate).ShouldBeFalse();
25
26
27
public static ClassMapping BuildMappingFor<T>(this FluentNHibernate.PersistenceModel model)
28
{
29
return model.BuildMappings()
0 commit comments