CarbonFitnessTest.Web.AppLogic.SchemaExportEngineTest.shouldExportDatabase C# (CSharp) Метод

shouldExportDatabase() приватный Метод

private shouldExportDatabase ( ) : void
Результат void
        public void shouldExportDatabase()
        {
            var bootstapperMock = new Mock<IBootStrapper>(MockBehavior.Strict);

            bootstapperMock.Setup(x => x.ExportDataBaseSchema());

            new SchemaExportEngine(bootstapperMock.Object).Export();

            bootstapperMock.VerifyAll();
        }
SchemaExportEngineTest