|
NebulaStream
0.6.213
NebulaStream is a data and application management framework for the internet of things
|
#include <API/QueryAPI.hpp>#include <API/Windowing.hpp>#include <BaseUnitTest.hpp>#include <Operators/LogicalOperators/StatisticCollection/Metrics/IngestionRate.hpp>#include <StatisticCollection/Characteristic/InfrastructureCharacteristic.hpp>#include <StatisticCollection/StatisticStorage/DefaultStatisticStore.hpp>#include <Util/Logger/Logger.hpp>#include <gtest/gtest.h>#include <memory>#include <numeric>Classes | |
| class | NES::Statistic::DummyStatistic |
| Dummy statistic so that we can test our DefaultStatisticStore. More... | |
| class | NES::Statistic::DefaultStatisticStoreTest |
Namespaces | |
| NES | |
| This exception represents a network error. | |
| NES::Statistic | |
Functions | |
| NES::Statistic::TEST_F (DefaultStatisticStoreTest, singleItem) | |
| Tests, if we can insert, get and delete one single Statistic. More... | |
| NES::Statistic::TEST_P (DefaultStatisticStoreTest, multipleItem) | |
| Tests, if we can insert, get and delete multiple items. More... | |
| NES::Statistic::INSTANTIATE_TEST_CASE_P (testDefaultStatisticStore, DefaultStatisticStoreTest, ::testing::Combine(::testing::Values(1, 2, 4, 8), ::testing::Values(1, 5, 10), ::testing::Values(1, 500, 1000)), [](const testing::TestParamInfo< DefaultStatisticStoreTest::ParamType > &info) { return std::string(std::to_string(std::get< 0 >(info.param))+"_Threads"+std::to_string(std::get< 1 >(info.param))+"_StatisticKey"+std::to_string(std::get< 2 >(info.param))+"_StatisticsPerKey");}) | |