| 23 | namespace embedx { |
| 24 | |
| 25 | class DeepDataTest : public ::testing::Test { |
| 26 | protected: |
| 27 | DeepConfig config_; |
| 28 | std::unique_ptr<DeepData> deep_data_; |
| 29 | |
| 30 | protected: |
| 31 | const std::string FREQ_FILE = "testdata/user_item_freq"; |
| 32 | const std::string NODE_CONFIG = "testdata/user_item_config"; |
| 33 | const std::string ITEM_FEATURE_FILE = "testdata/context"; |
| 34 | const std::string INST_FILE = "testdata/inst"; |
| 35 | }; |
| 36 | |
| 37 | TEST_F(DeepDataTest, FailOnMissingFreqFile) { |
| 38 | DeepConfig EMPTY_CONFIG; |
nothing calls this directly
no outgoing calls
no test coverage detected