Aqueduct.Appia.Host.Specs.StepDefinitions.AssertFileExistsInDestination C# (CSharp) Метод

AssertFileExistsInDestination() защищенный Метод

protected AssertFileExistsInDestination ( string filePath ) : void
filePath string
Результат void
        protected void AssertFileExistsInDestination(string filePath)
        {
            string destination = Path.Combine(_exportPath, filePath);
            Assert.True(File.Exists(destination));
        }