BlueCollar.Test.ExamplesTests.ExamplesCreateFileJob C# (CSharp) Method

ExamplesCreateFileJob() private method

private ExamplesCreateFileJob ( ) : void
return void
        public void ExamplesCreateFileJob()
        {
            CreateFileJob job = new CreateFileJob();
            Assert.IsFalse(File.Exists(job.Path));
            job.Execute();
            Assert.IsTrue(File.Exists(job.Path));
        }