public static void Clear(IntegrationTestsFixture fixture)
        {
            var deploymentProcessSettings = fixture.Resolve <DeploymentProcessSettings>();
            var workingDir = deploymentProcessSettings.WorkingDir.ToString();

            if (Directory.Exists(workingDir))
            {
                Directory.Delete(workingDir, recursive: true);
            }
        }
示例#2
0
 public static DateTime GetUtcNow(this IntegrationTestsFixture fixture)
 {
     return(fixture.Resolve <TestClock>().UtcNow);
 }
示例#3
0
 public static void SetUtcNow(this IntegrationTestsFixture fixture, DateTime dateTime)
 {
     fixture.Resolve <TestClock>().UtcNow = dateTime;
 }