(self, N_threads=1, ssize=SMALL_SIZE)
| 306 | class test_evaluate(unittest.TestCase): |
| 307 | |
| 308 | def setUp(self, N_threads=1, ssize=SMALL_SIZE): |
| 309 | logger.info( "**Run evaluate() tests with {} thread(s) over {} element arrays**".format(N_threads, ssize) ) |
| 310 | ne3.set_nthreads(N_threads) |
| 311 | self.ssize = ssize |
| 312 | |
| 313 | def test_eval_versus_run(self): |
| 314 | logger.info( 'Compare evaluate and .run' ) |
nothing calls this directly
no outgoing calls
no test coverage detected