Revision a763b81ee81810f5fa544165d5053bde478b2dbd authored by Konrad Werys on 28 November 2019, 13:47:50 UTC, committed by Konrad Werys on 28 November 2019, 13:47:50 UTC
1 parent e3f0532
Raw File
TomatoParser_test.cpp
/*!
 * \file TomatoParser_test.cpp
 * \author Konrad Werys
 * \date 2018/08/19
 */

#include "gtest/gtest.h"

#include "TomatoParser.h"

TEST(TomatoParser, parse_yaml_file) {

    typedef double TYPE;
    char filePath [] = "testData/T1_blood.yaml";

    Ox::TomatoParser<TYPE> parser;
    parser._filePath = filePath;
    parser._sequences["signalMag"]; // needed to 'add' sigMag
    parser.parse();
    //parser.disp();

    std::vector<std::string> truth;
    truth.push_back("55");
    truth.push_back("49");
    truth.push_back("29");
    truth.push_back("22");
    truth.push_back("51");
    truth.push_back("61");
    truth.push_back("64");

    for (int i = 0; i < truth.size(); i++) {
        EXPECT_EQ(parser._sequences["signalMag"][i], truth[i]);
    }
}

back to top