Revision 8a6de86e1a29c53020689dfee6c679a7b6fda78b authored by Konrad Werys on 01 November 2019, 08:16:31 UTC, committed by Konrad Werys on 01 November 2019, 08:16:31 UTC
1 parent e684d8a
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/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