MCPcopy Create free account
hub / github.com/0xemmkty/QuantMuse / DataLoaderTest

Class DataLoaderTest

backend/tests/test_data_loader.cpp:4–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2#include "data_loader.hpp"
3
4class DataLoaderTest : public ::testing::Test {
5protected:
6 void SetUp() override {
7 data_loader_ = std::make_unique<trading::DataLoader>();
8 }
9
10 std::unique_ptr<trading::DataLoader> data_loader_;
11};
12
13TEST_F(DataLoaderTest, LoadMarketData) {
14 auto data = data_loader_->loadMarketData("AAPL");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected