EmbeddingOptions Constructor and Validation Tests
| 31 | |
| 32 | // EmbeddingOptions Constructor and Validation Tests |
| 33 | TEST_F(OpenAIEmbeddingsTest, EmbeddingOptionsDefaultConstructor) { |
| 34 | EmbeddingOptions options; |
| 35 | |
| 36 | EXPECT_FALSE(options.is_valid()); |
| 37 | EXPECT_FALSE(options.has_input()); |
| 38 | } |
| 39 | |
| 40 | TEST_F(OpenAIEmbeddingsTest, EmbeddingOptionsBasicConstructor) { |
| 41 | nlohmann::json input = "test text"; |
nothing calls this directly
no test coverage detected