2017-07-03 22:19:50 -07:00
|
|
|
/*
|
|
|
|
* =====================================================================================
|
|
|
|
*
|
|
|
|
* Filename: catch.cpp
|
|
|
|
*
|
2017-07-15 01:26:03 -07:00
|
|
|
* Description: Unit Tests using the Catch framework
|
2017-07-03 22:19:50 -07:00
|
|
|
*
|
2017-07-08 02:50:37 -07:00
|
|
|
* Version: 1.0
|
2017-07-03 22:19:50 -07:00
|
|
|
* Created: 07/03/2017 08:25:04 PM
|
|
|
|
* Revision: none
|
|
|
|
* Compiler: gcc
|
|
|
|
*
|
2017-08-26 20:22:12 -07:00
|
|
|
* Author: surkeh@protonmail.com
|
2017-07-03 22:19:50 -07:00
|
|
|
*
|
|
|
|
* =====================================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CATCH_CONFIG_MAIN
|
|
|
|
#define CATCH_CONFIG_MAIN
|
|
|
|
#include "catch.hpp"
|
2017-07-15 01:26:03 -07:00
|
|
|
#include "catch-parser.cpp"
|
2017-07-15 01:41:31 -07:00
|
|
|
#include "catch-entityconverter.cpp"
|
2017-07-03 22:19:50 -07:00
|
|
|
|
|
|
|
|
|
|
|
#endif //CATCH_CONFIG_MAIN
|
2017-07-04 00:06:13 -07:00
|
|
|
|