public void The_EntityContainer_interface_exposes_the_method()
 {
     EntityContainerInterface.Should().HaveMethod(
         CSharpAccessModifiers.Public,
         _expectedReturnType,
         _expectedMethodName,
         GetMethodParameterTypes());
 }
 public void The_EntityContainer_interface_exposes_a_ConcreteInterface_property()
 {
     EntityContainerInterface.Should().HaveProperty(
         CSharpAccessModifiers.Public,
         null,
         NavTargetFetcherInterface,
         NavigationProperty.Name);
 }
Example #3
0
 public void The_EntityContainer_interface_exposes_an_AddTo_method()
 {
     EntityContainerInterface.Should().NotHaveMethod("AddTo" + _navigationProperty.Name);
 }