* Runs defined test. * * Call this method within GTest's testing macro (TEST_F, TEST_P, etc...). * The method will set up a testing pipeline, * push data through it and call output verification routines. * Every RunTest call will set up its own pipeline. * * @param inputs all inputs to the pipeline * @param outputs placeholder for outputs from pipeline * @param operator_
| 225 | * @param verify function, that will be used for test verification |
| 226 | */ |
| 227 | void RunTest(const std::vector<TensorListWrapper> &inputs, |
| 228 | std::vector<TensorListWrapper> &outputs, const Arguments &operator_arguments, |
| 229 | const Verify &verify) { |
| 230 | // TODO(mszolucha) implement |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * Convenient overload, for specific, single-input/single-output graph |
nothing calls this directly
no test coverage detected