Ejemplo n.º 1
0
        public void SetupEntityCreatesAndConfiguresMap()
        {
            var target = new CustomConfigurationWithSetup(SetupUserMap().Object);
            var actual = target.Maps.Single(m => m.Type == typeof(User));

            Assert.Equal(ExampleTableName, actual.Table);
        }
 public void SetupEntityCreatesAndConfiguresMap() {
     var target = new CustomConfigurationWithSetup(SetupUserMap().Object);
     var actual = target.Maps.Single(m => m.Type == typeof(User));
     Assert.Equal(ExampleTableName, actual.Table);
 }