| 120 | } |
| 121 | |
| 122 | int main() { |
| 123 | TestUtils::TestRunner runner("Embedding Tests"); |
| 124 | runner.run_test("embeddings", test_embeddings()); |
| 125 | runner.run_test("image_embeddings", test_image_embeddings()); |
| 126 | runner.run_test("audio_embeddings", test_audio_embeddings()); |
| 127 | runner.print_summary(); |
| 128 | return runner.all_passed() ? 0 : 1; |
| 129 | } |
nothing calls this directly
no test coverage detected