ATLAS Offline Software
Loading...
Searching...
No Matches
ExpectationCompare.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7
8#ifndef COLUMNAR_TEST_FIXTURES_EXPECTATION_COMPARE_H
9#define COLUMNAR_TEST_FIXTURES_EXPECTATION_COMPARE_H
10
11#include <string>
12#include <typeinfo>
13
14namespace columnar
15{
16 namespace TestUtils
17 {
18 void checkExpectation (const std::string& columnName, const std::type_info& outputType, std::size_t outputSize, const void *outputData, const std::type_info& expectationType, std::size_t expectationSize, const void *expectationData);
19
20 void printExpectedOutput (const std::string& columnName, const std::type_info& outputType, std::size_t outputSize, const void *outputData);
21 }
22}
23
24#endif
void checkExpectation(const std::string &columnName, const std::type_info &outputType, std::size_t outputSize, const void *outputData, const std::type_info &expectationType, std::size_t expectationSize, const void *expectationData)
void printExpectedOutput(const std::string &columnName, const std::type_info &outputType, std::size_t outputSize, const void *outputData)