Home | History | Annotate | Download | only in samples

Lines Matching full:tests

51 // Step 2. Use the TEST macro to define your tests.
61 // In Google Test, tests are grouped into test cases. This is how we
62 // keep test code organized. You should put logically related tests
69 // once, but it makes no guarantee on the order the tests are
70 // executed. Therefore, you should write your tests in such a way
76 // Tests Factorial().
78 // Tests factorial of negative numbers.
102 // Tests factorial of 0.
107 // Tests factorial of positive numbers.
116 // Tests IsPrime()
118 // Tests negative input.
127 // Tests some trivial cases.
135 // Tests positive input.
148 // This runs all the tests you've defined, prints the result, and
151 // Did you notice that we didn't register the tests? The
152 // RUN_ALL_TESTS() macro magically knows about all the tests we