Beispiel #1
0
    public CacheCommand() : base("cache", CliOutput.Help_CacheCommand_Description)
    {
        var prepare = new CachePrepareCommand();

        AddCommand(prepare);

        var destroy = new CacheDestroyCommand();

        AddCommand(destroy);
    }
Beispiel #2
0
    public void Verify_destroy_handler_configuration()
    {
        var cacheDestroyCommand = new CacheDestroyCommand();

        cacheDestroyCommand.Handler.Should().NotBeNull();
    }