A lot of stuff
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

- refactored and simplified RW assemblies
- create separate SPI Com IF for RWs
- Update .cproject file: Fixed to decrease indexer parsing times
This commit is contained in:
2022-05-11 01:48:26 +02:00
parent df7e0007d0
commit 91b69eacf6
12 changed files with 192 additions and 1059 deletions

View File

@ -2,18 +2,16 @@
#include <mission/controller/ThermalController.h>
#include <catch2/catch_test_macros.hpp>
#include <fstream>
#include <iostream>
#include <stdexcept>
#include "../testEnvironment.h"
#include <fstream>
#include <stdexcept>
#include <iostream>
#include "rapidcsv.h"
TEST_CASE("ACS Controller", "[AcsController]") {
SECTION("SectionTest") {
//acsCtrl.performOperation();
// acsCtrl.performOperation();
CHECK(1 == 1);
try {
@ -21,7 +19,7 @@ TEST_CASE("ACS Controller", "[AcsController]") {
std::ifstream file("unittest/meineTestDaten.txt");
if (file.good()) {
std::string line;
while(std::getline(file, line)) {
while (std::getline(file, line)) {
std::cout << "ACS CTRL Test test file: " << line << std::endl;
}
}
@ -36,12 +34,8 @@ TEST_CASE("ACS Controller", "[AcsController]") {
sif::warning << "CSV file test exception occured: " << e.what() << std::endl;
}
REQUIRE(2 == 2);
}
SECTION("SectionTest2") {
}
SECTION("SectionTest2") {}
}