| 144 | { |
| 145 | //************************************************************************* |
| 146 | TEST(min) |
| 147 | { |
| 148 | int a = 1; |
| 149 | int b = 2; |
| 150 | |
| 151 | CHECK_EQUAL((std::min(a, b)), (etl::min(a, b))); |
| 152 | CHECK_EQUAL((std::min(b, a)), (etl::min(b, a))); |
| 153 | } |
| 154 | |
| 155 | //************************************************************************* |
| 156 | TEST(min_compare) |
nothing calls this directly
no test coverage detected