summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
Commit message (Collapse)AuthorAge
* Rename doctest_impl.h to doctest.cpp for less confusion. (#185)Dimitrij Mijoski2019-02-18
| | | | | | | | | | doctest_impl.h was not really a header file, it contains ODR definitions. It was meant to be included by one and exactly one implementation file. It was confusing for contributors. Now it is more clear. Catch2 names its implementation files .cpp. As a consequence, we simplified the creation of doctest with main. Extra file doctest_main.cpp is not needed.
* using the .svg files for the logo/icon (and also moved and renamed them) - ↵onqtam2018-08-23
| | | | relates #141 and #145
* removed a bunch of templates simulating the is_constructible<> trait and ↵onqtam2017-09-05
| | | | | | added a config option (DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS) that triggers the inclusion of <type_traits> and enables the ability for the Approx helper to be used with strong typedefs of double - fixes #85 and relates #62 also changed links to paypal to have a default amount
* fixing broken links and tiny mistakes in docsonqtam2017-05-16
|
* - templated test cases example is doneonqtam2017-05-16
| | | | - simplified a bit the cmake
* - added prefix for the TEST_MODE optiononqtam2017-05-16
| | | | - removed the cpp11 option
* - added CII badgeonqtam2017-05-16
| | | | | - tiny docs update - removed tests - trying to figure out WHY ON EARTH ONLY GCC 5 COMPLAINS ABOUT A STRICT OVERFLOW WARNING where there shouldn't be any - see this CI build: https://travis-ci.org/onqtam/doctest/builds/221092038
* - moved contributing guidelines to root folderonqtam2017-05-16
| | | | - added template for issues and PRs
* updated contributing.mdonqtam2016-09-21
| | | | | | moved some macros to the bottom of the header touched the alignment of BDD style output
* from now on the library should be developed using the 2 headers in ↵onqtam2016-09-21
doctest/parts/ and doctest/doctest.h gets generated from them! updated docs