2017-07-04 10:49:50 +05:30
|
|
|
/*
|
|
|
|
* =====================================================================================
|
|
|
|
*
|
|
|
|
* Filename: catch.cpp
|
|
|
|
*
|
2017-07-15 13:56:03 +05:30
|
|
|
* Description: Unit Tests using the Catch framework
|
2017-07-04 10:49:50 +05:30
|
|
|
*
|
2017-07-08 15:20:37 +05:30
|
|
|
* Version: 1.0
|
2017-07-04 10:49:50 +05:30
|
|
|
* Created: 07/03/2017 08:25:04 PM
|
|
|
|
* Revision: none
|
|
|
|
* Compiler: gcc
|
|
|
|
*
|
|
|
|
* Author: suhrke@teknik.io
|
|
|
|
*
|
|
|
|
* =====================================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CATCH_CONFIG_MAIN
|
|
|
|
#define CATCH_CONFIG_MAIN
|
|
|
|
#include "catch.hpp"
|
2017-07-15 13:56:03 +05:30
|
|
|
#include "catch-parser.cpp"
|
2017-07-15 14:11:31 +05:30
|
|
|
#include "catch-entityconverter.cpp"
|
2017-07-04 10:49:50 +05:30
|
|
|
|
|
|
|
|
|
|
|
#endif //CATCH_CONFIG_MAIN
|
2017-07-04 12:36:13 +05:30
|
|
|
|