示例#1
0
        public void When_GetTables_is_called_then_a_collection_tables_should_be_returned()
        {
            // Arrange
            var systemUnderTest = new SchemaRepository(@"Server=.\SQLExpress;Database=Example;Trusted_Connection=True", new List <string>());

            // Act
            var result = systemUnderTest.GetTables();

            // Assert
            Assert.IsNotNull(result);
        }