public void GetExecutorShouldReturnTestCaseFilterArgumentProcessorCapabilities()
        {
            TestCaseFilterArgumentProcessor processor = new TestCaseFilterArgumentProcessor();

            Assert.IsTrue(processor.Executor.Value is TestCaseFilterArgumentExecutor);
        }
        public void GetMetadataShouldReturnTestCaseFilterArgumentProcessorCapabilities()
        {
            TestCaseFilterArgumentProcessor processor = new TestCaseFilterArgumentProcessor();

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