| 199 | using af::sum; |
| 200 | |
| 201 | TEST(RandomEngine, Default) { |
| 202 | // Using default Random engine will cause segfaults |
| 203 | // without setting one. This test should be before |
| 204 | // setting it to test if default engine setup is working |
| 205 | // as expected, otherwise the test will fail. |
| 206 | randomEngine engine = getDefaultRandomEngine(); |
| 207 | } |
| 208 | |
| 209 | TEST(Random, CPP) { |
| 210 | // TEST will fail if exception is thrown, which are thrown |
nothing calls this directly
no test coverage detected