Bari.Core.Test.Commands.CleanTest.DeletesTargetDirectory C# (CSharp) Method

DeletesTargetDirectory() private method

private DeletesTargetDirectory ( ) : void
return void
        public void DeletesTargetDirectory()
        {
            target.IsDeleted.Should().BeFalse();

            var cmd = kernel.Get<ICommand>("clean");
            cmd.Run(suite, new string[0]);

            target.IsDeleted.Should().BeTrue();
        }