Aqueduct.Appia.Host.Specs.StepDefinitions.AssertFileExistsInDestination C# (CSharp) Method

AssertFileExistsInDestination() protected method

protected AssertFileExistsInDestination ( string filePath ) : void
filePath string
return void
        protected void AssertFileExistsInDestination(string filePath)
        {
            string destination = Path.Combine(_exportPath, filePath);
            Assert.True(File.Exists(destination));
        }