コード例 #1
0
        public void Return_methods_in_class_with_test_method_attribute()
        {
            var classes = new TestFinder().GetClassesWithFabulousTestClassAttribute(_assembly);

            var methods = new TestFinder().GetMethodsWithFabulousTestMethodAttribute(classes.First());

            Assert.That(methods.Any());
        }
コード例 #2
0
        public void Return_classes_from_project_with_test_class_attribute()
        {
            var classes = new TestFinder().GetClassesWithFabulousTestClassAttribute(_assembly);

            Assert.That(classes.Any());
        }