| 116 | }; |
| 117 | |
| 118 | TEST_P(output, small_numbers) |
| 119 | { |
| 120 | test(0.0); |
| 121 | |
| 122 | #if !defined(_MSC_VER) |
| 123 | // Microsoft Visual C++ isn't rounding these correctly. See |
| 124 | // the rounding tests for more information. |
| 125 | test(1.125); |
| 126 | test(-1.125); |
| 127 | |
| 128 | test(0.125); |
| 129 | test(-0.125); |
| 130 | |
| 131 | test(1.0 / 1024.0); |
| 132 | test(-1.0 / 1024.0); |
| 133 | #endif |
| 134 | } |
| 135 | |
| 136 | TEST_P(output, large_numbers) |
| 137 | { |
nothing calls this directly
no outgoing calls
no test coverage detected