Esempio n. 1
0
        public void Setup()
        {
            _testConfiguration = ConfigureWithEmptyWorkspace();

            //create test data service provider
            var testDataServiceFactory = new TestDataServiceFactory();

            _testDataService = testDataServiceFactory.Create(_testConfiguration.Platform);

            //create data service factory for migration proper
            _directoryService = new DirectoryService();
            _traceService     = new FileTraceService(_directoryService)
            {
                IsDebugEnabled = true
            };
            _migrationServiceFactory = new MigrationServiceFactory(_traceService);
        }