Robin Mueller
ca640ea18f
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
40 lines
858 B
C++
40 lines
858 B
C++
#include <fsfw/ipc/QueueFactory.h>
|
|
#include <mission/controller/ThermalController.h>
|
|
|
|
#include <catch2/catch_test_macros.hpp>
|
|
|
|
#include "../testEnvironment.h"
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include "rapidcsv.h"
|
|
|
|
TEST_CASE("ACS Controller", "[AcsController]") {
|
|
|
|
SECTION("SectionTest") {
|
|
//acsCtrl.performOperation();
|
|
CHECK(1 == 1);
|
|
|
|
{
|
|
std::ifstream file("unittest/meineTestDaten.txt");
|
|
std::string line;
|
|
while(std::getline(file, line)) {
|
|
std::cout << "ACS CTRL Test test file: " << line << std::endl;
|
|
}
|
|
}
|
|
|
|
{
|
|
rapidcsv::Document doc("unittest/meineTestDaten.txt");
|
|
std::vector<int> col = doc.GetColumn<int>("test0");
|
|
std::cout << "Read " << col.size() << " values: " << col[0] << ", " << col[1] << std::endl;
|
|
|
|
}
|
|
|
|
REQUIRE(2 == 2);
|
|
}
|
|
|
|
SECTION("SectionTest2") {
|
|
|
|
}
|
|
|
|
}
|