public void GetExecuterShouldReturnRunTestsArgumentProcessorCapabilities()
        {
            RunTestsArgumentProcessor processor = new RunTestsArgumentProcessor();

            Assert.IsTrue(processor.Executor.Value is RunTestsArgumentExecutor);
        }
        public void GetMetadataShouldReturnRunTestsArgumentProcessorCapabilities()
        {
            RunTestsArgumentProcessor processor = new RunTestsArgumentProcessor();

            Assert.IsTrue(processor.Metadata.Value is RunTestsArgumentProcessorCapabilities);
        }