public void JobConstructorTests_VeryfyTestCaseAttributes() { var obj = new JobConstructorTests(); var result = obj.GetType() .GetMethods() .Select(x => x.GetCustomAttributes(false) .Where(z => z.GetType() == typeof(TestCaseAttribute)) .Count()) .Sum(); Assert.AreEqual(0, result); }
public void JobConstructorTests_VerifyNumberOfTests() { var methodsFromFramework = 4; var expectedMethods = 10; var totalExpectedMethods = methodsFromFramework + expectedMethods; var obj = new JobConstructorTests(); var result = obj.GetType() .GetMethods() .Count(); Assert.AreEqual(totalExpectedMethods, result); }