1. dc01198 fixed issue #149 by onqtam · 6 years ago
  2. f8d5719 version 2.0.0 by onqtam · 6 years ago
  3. 8f10044 clang builds should finally be passing now! by onqtam · 6 years ago
  4. 8aecdee oh come on! clang builds - warnings... by onqtam · 6 years ago
  5. 65cf692 builds should pass now... by onqtam · 6 years ago
  6. a2e77c7 implemented a full example of using doctest in a threaded environment - relates to #4 by onqtam · 6 years ago
  7. 7b7bb8a windows builds with mingw should pass now by onqtam · 6 years ago
  8. c9b4e1f added an example with concurrent threads doing assertions - relates #4 (currently ctest fails on it...) by onqtam · 6 years ago
  9. 4d87d56 moved to nullptr, removed c++98-compat warning suppressions for clang (also long-long and 0 as null for gcc/clang) by onqtam · 6 years ago
  10. 25bfda9 hopefully fixing builds... by onqtam · 6 years ago
  11. 917d79d fixing builds... relates #114 by onqtam · 6 years ago
  12. 8171c48 polished the feature for allowing the use of asserts outside of a testing context (also example and docs) - relates #114 by onqtam · 6 years ago
  13. 1d68a13 - added the ability to call asserts outside of a testing context without recompiling! currently the fast asserts are optimized for runtime speed to the maximum but the other asserts are not. Sadly logging macros - like INFO() - aren't supported... yet! - closes #114 - the way to do it is to call setAsDefaultForAssertsOutOfTestCases() on a doctest::Context and optionally to register a custom handler with doctest::Context::setAssertHandler() by onqtam · 6 years ago
  14. 3ac4c3f code coverage to the max! by onqtam · 6 years ago
  15. 42b60db moved implementation details into an anonymous namespace (still inside of doctest but outside of detail - reason for this: not to have 3 namespaces nested into each other, downside: had to use detail in doctest (for convenience) - hope it doesn't break anywhere...) by onqtam · 6 years ago
  16. 4317c82 lets see those builds clean! by onqtam · 6 years ago
  17. be46017 using c++11 variadic templates for the templated test cases! relates #137 and #38 by onqtam · 6 years ago
  18. 2d16073 initial version of a reporter system! inherit from the IReporter class and register it with doctest::registerReporter() by onqtam · 6 years ago
  19. 68681e6 version 1.2.9 by onqtam · 6 years ago
  20. 1655b24 regenerated test output - relates #123 by onqtam · 6 years ago
  21. 7907692 fixed #123 - changed the output style in the console - gcc/clang output with :n: around line numbers and other compilers output with (n) - there is also a documented option for this. Also changed lots of code - thank god I moved to streams! by onqtam · 6 years ago
  22. c168e36 version 1.2.8 by onqtam · 7 years ago
  23. 568b109 fixed issue #119 by onqtam · 7 years ago
  24. 09f55ca typo in comment by Viktor Kirilov · 7 years ago
  25. 8cec917 version 1.2.7 by onqtam · 7 years ago
  26. 8a0a023 fixed indentation which led to a gcc warning by onqtam · 7 years ago
  27. b29e617 small fixes by onqtam · 7 years ago
  28. 50cbb80 updated travis build matrix with supported osx images by onqtam · 7 years ago
  29. ac175d1 version 1.2.6 by onqtam · 7 years ago
  30. 7d8ecb3 fixing the reference output... relates #95 by onqtam · 7 years ago
  31. 02b7eb7 silencing 1 more warning for VS 2008/2010 when using /Wall - that a float was getting stored in memory and not in a register... relates #95 by onqtam · 7 years ago
  32. abf39d2 Visual studio builds now use /Wall instead of /W4 - and only 4 warnings are left disabled globally - fixes #95 by onqtam · 7 years ago
  33. c80eed1 [release] version 1.2.5 by onqtam · 7 years ago
  34. 914fb9a bumped version by onqtam · 7 years ago
  35. 6ff3d35 version 1.2.3 by onqtam · 7 years ago
  36. eb96d16 enabling clang 5 builds by onqtam · 7 years ago
  37. 90523ec version 1.2.2 by onqtam · 7 years ago
  38. eca6585 removed templated test case for float - was triggering clang warnings when constructing doctest::Approx which only takes double by default - relates #85 by onqtam · 7 years ago
  39. d8a7edc Prefer if(MSVC) (#84) by Martin Moene · 7 years ago
  40. fd9560c - fixing build after merging the #82 PR about catching by const ref in <LEVEL>_THROWS_AS assert macros by onqtam · 7 years ago
  41. f6f4f93 removed redundant checks by onqtam · 7 years ago
  42. 88d3e86 code coverage maxed by onqtam · 7 years ago
  43. 9ae8e02 version 1.2.1 by onqtam · 7 years ago
  44. b8220c5 version 1.2 almost out! by onqtam · 7 years ago
  45. 8cd8b3b fixing cmake - builds should pass now - all cmake projects can be used by themselves and all depend on the assemble_single_header target (as they should - previous commit had changed that) by onqtam · 7 years ago
  46. 2af164a changed the way the example with the tests inside of a static library is defined in cmake - now using an object library instead of a static library - thanks to github.com/pthom - relates #21 by onqtam · 7 years ago
  47. eccda33 - added DOCTEST_NOINLINE to String::operator=() so GCC 4.9/5/6 stop reporting the Wstrict-overflow warning when optimizations are enabled and it got inlined in the vector class somewhere... by onqtam · 7 years ago
  48. 0b408df this should fix the CI builds - apparently valgrind doesn't like it when I call rawMemoryToString on my new small buffer optimized string class... by onqtam · 7 years ago
  49. 513cf69 implementation of a string class with a small buffer optimization - relates #69 by onqtam · 7 years ago
  50. 68d0f1d added an overload for operator<< of the ContextBuilder that catches by const ref and use a static assert - relates #23 by onqtam · 7 years ago
  51. a82c1e4 fixing builds by onqtam · 7 years ago
  52. e6412e1 finished decorators - coverage should be maxed! - relates #67 by onqtam · 7 years ago
  53. 754f402 - almost done with the should_fail/may_fail/expected_failures decorators by onqtam · 7 years ago
  54. 6c7369e first steps towards decorators for test cases - relates #67 by onqtam · 7 years ago
  55. f6370e2 all builds should pass now (+ totally maxed coverage) by onqtam · 8 years ago
  56. aec53d2 enabled all builds again by onqtam · 8 years ago
  57. c4efc48 maxed out code coverage by onqtam · 8 years ago
  58. 14ddb1e code coverage done! by onqtam · 8 years ago
  59. 5dbcb1e almost done with code coverage - only subcase filtering left! by onqtam · 8 years ago
  60. f0f899b fixed a bit the listing of test suites and fixed test which gave different results with different compilers/modes by onqtam · 8 years ago
  61. 89da654 more work on test coverage by onqtam · 8 years ago
  62. 7630535 more code coverage by onqtam · 8 years ago
  63. 321f270 working on test coverage by onqtam · 8 years ago
  64. f6d1a51 code coverage should work now by onqtam · 8 years ago
  65. 35c14cd Printing the test suite name on test case failure - fixes #65 by onqtam · 8 years ago
  66. f715325 builds should definitely be fixed now... by onqtam · 8 years ago
  67. c79b754 builds should be fixed now... by onqtam · 8 years ago
  68. af07cbb finished with examples! by onqtam · 8 years ago
  69. 378d670 test cases example done by onqtam · 8 years ago
  70. cb7bad6 - logging example done! by onqtam · 8 years ago
  71. 135a50e fixing clang builds... by onqtam · 8 years ago
  72. 8c31176 fixing builds by onqtam · 8 years ago
  73. 7cc0e96 examples almost done! only assertion_macros.cpp is left by onqtam · 8 years ago
  74. d320ac2 - templated test cases example is done - simplified a bit the cmake by onqtam · 8 years ago
  75. 119cfb6 - added an undocumented flag to omit the "skipped" part in the output summary - for convenience for the all_features example by onqtam · 8 years ago
  76. e0f1880 - removed another unnecessary example that slowed down builds - now only the python script is left by onqtam · 8 years ago
  77. 27079bc output is now like the old one by onqtam · 8 years ago
  78. 2c100d6 - added test outputs by onqtam · 8 years ago
  79. 12d5598 everything compiles! by onqtam · 8 years ago
  80. 98e12af cleaning up examples by onqtam · 8 years ago
  81. 0d55e8d added example how to filter out doctest options from the command line in the docs and removed it from the examples folder by onqtam · 8 years ago
  82. 26c2008 examples can no longer be built using cmake separately - they require cmake invocation from the root of the repository (and now use the modern way of handling include dependencies) by onqtam · 8 years ago
  83. 61954c3 reworked cmake a bit by onqtam · 8 years ago
  84. 08cf7dc moved all cmake-related stuff to scripts/cmake by onqtam · 8 years ago
  85. bc85976 - removed warning that is included in Wall/Wextra (although not documented in the online docs of GCC) by onqtam · 8 years ago
  86. a9675f5 - added CII badge by onqtam · 8 years ago
  87. bab3f28 fixing builds with -fno-exceptions ... by onqtam · 8 years ago
  88. 8fa60c0 preserving context from ```INFO()``` contexts when the test case ends from an exception - relates #48 #23 (also see this Catch PR: https://github.com/philsquared/Catch/pull/876 ) by onqtam · 8 years ago
  89. 659ce3b fixed the constructor - should now work for types from which double can be constructed - see here: http://stackoverflow.com/questions/43306848 by onqtam · 8 years ago
  90. 2825144 Added support to Approx for strong typedefs of double - fixes #62 by onqtam · 8 years ago
  91. 0e35eb2 the TEST_CASE_TEMPLATE_INSTANTIATE and TYPE_TO_STRING macros now properly require a semicolon after their use by onqtam · 8 years ago
  92. 94ca1cd builds should pass now... the return type of sizeof() is tricky - it gets stringified differently in some environments by onqtam · 8 years ago
  93. ee6d4bf implemented templated test cases - relates #38 - for more information read the parameterized-tests.md file by onqtam · 8 years ago
  94. b881c1c this should fix the MSVC builds... forgot to delete the duplicate line by onqtam · 8 years ago
  95. bef26de all builds should pass now! by onqtam · 8 years ago
  96. 8469018 making windows builds compile (linux still fail but its because of the output being different due to some bug in the sorting of test cases) by onqtam · 8 years ago
  97. be91727 - fixed bug that was introduced in commit 0b0b82f1728f65075724b41aca83c62834978d44 - should have made these changes in a separate commit for easier testing by onqtam · 8 years ago
  98. cfce188 fixed name of argument for sorting by onqtam · 8 years ago
  99. 9c34f97 working on templated test cases - initial draft in the separate_headers example - relates #38 by onqtam · 8 years ago
  100. cfefe2b changed a bit the message for the 3 different levels of failures - WARN/CHECK/REQUIRE by onqtam · 8 years ago