1. dab0130 this should hopefully fix linux builds... by onqtam · 8 years ago
  2. 53d4e78 added "struct" infront of "sigaction" - seems necessary - see this SO question: http://stackoverflow.com/questions/14213270/sigaction-both-struct-and-function by onqtam · 8 years ago
  3. 596e1ba fixing builds for old MSVC versions - where the is_constructible<> trait doesn't work - adding a default double overload - relates previous commit b68f6d7f6dfd7d37f5b78596007adca96da45588 by onqtam · 8 years ago
  4. b7716c6 Approx epsilon() and scale() can not take floats and strong typedefs of double as well - relates #62 by onqtam · 8 years ago
  5. b395b5e added crash handling: signals on UNIX platforms or structured exceptions on Windows - closes #63 by onqtam · 8 years ago
  6. 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
  7. dfafb4b clarified stuff in the docs by onqtam · 8 years ago
  8. 523d3d7 handling the newly introduced asser_with_message macros properly when exceptions are disabled - relates #48 by onqtam · 8 years ago
  9. e694ad1 silencing this warning again to fix my builds... I don't think it could end up silencing user code since by the time the evaluation of operator== (or whatever) comes to the doctest templates all operators with higher precedence should have already finished (regarding the expression decomposition) by onqtam · 8 years ago
  10. 2fffbd3 added comment about the use of operator << instead of <= for the expression decomposition by onqtam · 8 years ago
  11. 4d7222a all clang/gcc builds should pass now! by onqtam · 8 years ago
  12. 0642b93 removed unnecessary silencing of Wdouble-promotion for gcc/clang by onqtam · 8 years ago
  13. 09288d3 simplified is_constructible<> to accept only one argument and removed pointer support - builds with old MSVC versions should pass now - relates #62 by onqtam · 8 years ago
  14. 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
  15. 2825144 Added support to Approx for strong typedefs of double - fixes #62 by onqtam · 8 years ago
  16. fafc9e6 Revert "- silenced warnings for unused variables in assert macros when DOCTEST_CONFIG_DISABLE is used" by onqtam · 8 years ago
  17. 77a96ea - silenced warnings for unused variables in assert macros when DOCTEST_CONFIG_DISABLE is used by onqtam · 8 years ago
  18. a486397 added 2 more notes about the templated test cases by onqtam · 8 years ago
  19. 0e35eb2 the TEST_CASE_TEMPLATE_INSTANTIATE and TYPE_TO_STRING macros now properly require a semicolon after their use by onqtam · 8 years ago
  20. 94ca1cd builds should pass now... the return type of sizeof() is tricky - it gets stringified differently in some environments by onqtam · 8 years ago
  21. 8545faf - moved contributing guidelines to root folder by onqtam · 8 years ago
  22. ee6d4bf implemented templated test cases - relates #38 - for more information read the parameterized-tests.md file by onqtam · 8 years ago
  23. 27a8c08 trying to get the gcc osx builds running again by onqtam · 8 years ago
  24. b881c1c this should fix the MSVC builds... forgot to delete the duplicate line by onqtam · 8 years ago
  25. bef26de all builds should pass now! by onqtam · 8 years ago
  26. 5d10992 - removed retired xcode images by onqtam · 8 years ago
  27. 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
  28. 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
  29. cfce188 fixed name of argument for sorting by onqtam · 8 years ago
  30. 9c34f97 working on templated test cases - initial draft in the separate_headers example - relates #38 by onqtam · 8 years ago
  31. 73b00f2 doc fix by onqtam · 8 years ago
  32. b71881e formatting - finally got a hold of clang-format for VS 2017 - see this SO thread: http://stackoverflow.com/questions/42955863/clang-format-plugin-for-visual-studio-2017 by onqtam · 8 years ago
  33. 38091e4 tiny docs change by onqtam · 8 years ago
  34. 01d6a67 added _MESSAGE forms of normal asserts and exception-related asserts - relates #23 relates #48 by onqtam · 8 years ago
  35. 565c97f Added API for reporting failures - MESSAGE() / FAIL_CHECK() / FAIL() (like warn/check/require) and the appropriate ADD_<LEVEL>_AT macros for integration with mocking frameworks and other third party - fixes #9 by onqtam · 8 years ago
  36. cfefe2b changed a bit the message for the 3 different levels of failures - WARN/CHECK/REQUIRE by onqtam · 8 years ago
  37. 3bf66ca using a static assert instead of deleting/hiding the forbidden overload for rvalues - relates #23 relates #48 by onqtam · 8 years ago
  38. 0cd0607 For INFO() the operator<< captures not by const - this will reject temporaries even in C++98 (but compilation error messages will be horrible) - relates #23 relates #48 by onqtam · 8 years ago
  39. 01e8954 added xcode 8.3 image to travis by onqtam · 8 years ago
  40. 7244b43 now capturing C string literals with INFO() will treat them as strings - relates #23 relates #48 by onqtam · 8 years ago
  41. 7d44cfa fixing builds for MSVC versions older than 2015 (and silencing a conversion warning for GCC 4.8) by onqtam · 8 years ago
  42. d096dc2 moving from references to pointers when using a forward-declared std::ostream - trying to fix builds for VS 2008/2010/2012/2013 - oddly enough 2015/2017 pass (also all gcc/clang versions under linux/osx pass as well...) - relates #23 relates #48 by onqtam · 8 years ago
  43. a369a98 added INFO() and CAPTURE() logging macros - they can log variables and construct a message which gets printed only when an assert in the same scope (or in a nested one) after them fails. They use lazy stringification and the stack to avoid heap allocations and unnecessary string construction for the common case where no asserts fail. fixes #48 fixes #23 by onqtam · 8 years ago
  44. 21e3ec6 - added simplified example of how captures work by onqtam · 8 years ago
  45. 7ccebe0 - added detection of rvalue reference support of compilers by onqtam · 8 years ago
  46. cad5cf4 fix gcc 4.4 build by onqtam · 8 years ago
  47. 0c4bbb8 - updated feature detection a bit - updated docs by onqtam · 8 years ago
  48. 34b56a3 - tiny code rework - getting ready for lazy stringification + removing -Winline stuff for gcc 4.7 by onqtam · 8 years ago
  49. 2aae425 fixing builds when exceptions are disabled but all asserts are used - relates #58 by onqtam · 8 years ago
  50. f48d0fe Added support for un-parenthesized expressions containing commas in asserts - fixed #58 by onqtam · 8 years ago
  51. 199d50d tiny docs change by onqtam · 8 years ago
  52. 9a3dd31 added a note in the docs by onqtam · 8 years ago
  53. 297f7bb Add ability to filter subcases with filters - fixes #57 by onqtam · 8 years ago
  54. 7a3ad26 c++11 and -fno-rtti builds now compare to reference output by onqtam · 8 years ago
  55. 6914dbf added a minimal example of how exception translation works by onqtam · 8 years ago
  56. 74f3412 better docs by onqtam · 8 years ago
  57. 4b68df3 builds with -fno-exceptions should pass now - relates #12 by onqtam · 8 years ago
  58. 2d93e04 - fixed builds with -fno-exceptions - relates #12 by onqtam · 8 years ago
  59. 68c47e5 - Added option to query if code is being ran inside of a test - doctest::isRunningInTest() - relates #56 by onqtam · 8 years ago
  60. 96a4b87 - exported a forgotten symbol - relates #55 - updated docs a bit by onqtam · 8 years ago
  61. 036fa31 fixing builds... default template arguments for function templates not supported in C++98... by onqtam · 8 years ago
  62. 8327c6c fixing clang builds on CI by onqtam · 8 years ago
  63. 246e817 fixing CI builds - no C++11... by onqtam · 8 years ago
  64. 408d1f9 finished docs on "exception translation mechanism + the ability for users to extend it with custom exception types" - fixes #12 by onqtam · 8 years ago
  65. 05bcc37 added exception translation to examples - relates #12 by onqtam · 8 years ago
  66. 74facf2 changed a bit the text for exception reporting - relates #12 by onqtam · 8 years ago
  67. 85642bf implemented translation of exceptions in asserts - relates #12 by onqtam · 8 years ago
  68. 653a24e - initial version of exception translation - for when a test case throws - relates #12 by onqtam · 8 years ago
  69. e097006 reused warning silencing code for making anonymous global static in dummy vars by onqtam · 8 years ago
  70. 4cc479d updated license year by onqtam · 8 years ago
  71. 5a9891f shuffled code a bit - less stuff in the fwd part by onqtam · 8 years ago
  72. b564f08 updated different config build count by onqtam · 8 years ago
  73. 1c896da updated docs - plans for versions 1.2 / 1.3 / 1.4 by onqtam · 8 years ago
  74. 8401535 adding the clang 4.0 build in the allowed failures until it's ppa is whitelisted by travis (also updated cmake) by onqtam · 8 years ago
  75. 0d8997c adding clang 4.0 to builds - probably wont work since the ppa is not yet whitelisted in travis... by onqtam · 8 years ago
  76. 2a921f2 added VS 2017 to build matrix - should work! (also reworked the appveyor builds to be 1 job per compiler instead of 1 job per config/arch pair) by onqtam · 8 years ago
  77. 4cb67f3 try to put "image" in the build matrix by onqtam · 8 years ago
  78. d1befe9 trying to add a VS 2017 build by onqtam · 8 years ago
  79. 1fc3dc7 added --no-line-numbers=<bool> - Line numbers are replaced with ```0``` in the output when a source location is printed - useful if you want the same output from the testing framework even when test positions change within a source file by onqtam · 8 years ago
  80. 658c870 fixed #41 - !!! BREAKING CHANGE !!! - Make TEST_SUITE work with bodies, add TEST_SUITE_BEGIN by onqtam · 8 years ago
  81. e70848d forgot to export a global function - because written inside of the class as a friend... relates #55 by onqtam · 8 years ago
  82. 4d8c72d tiny rework - making the export/import defines always usable - even when not dealing with DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL by onqtam · 8 years ago
  83. b84e919 fixing clang builds... by onqtam · 8 years ago
  84. 653501e fixing linux builds - linking to dl by onqtam · 8 years ago
  85. b43aa04 fixed #55 - Ability for a binary (executable / shared object) to use the test runner implementation of another binary - with exported symbols - so tests end up in a single registry by onqtam · 8 years ago
  86. 376530a updated docs a bit by onqtam · 8 years ago
  87. 237d496 added the rest of the relational operators to Approx - fixes #52 by onqtam · 8 years ago
  88. f63c510 - removed old hacks for gcc 4.4 under osx by onqtam · 8 years ago
  89. 1114735 fixed broken image link in main readme by onqtam · 8 years ago
  90. c11603b removed a falsehood in the "differences with Catch" section of the FAQ by onqtam · 8 years ago
  91. d822480 version 1.1.4 by onqtam · 8 years ago 1.1.4
  92. 3bb1157 bumped version by onqtam · 8 years ago
  93. 4e94086 removed gcc 4.4/4.5 from osx builds and removed linux clang 3.9 from the allowed failures by onqtam · 8 years ago
  94. 37065ea added --force-colors option - so even when no tty is detected the output gets colored - related to #50 by onqtam · 8 years ago
  95. 88955d3 fixed #49 - Issue with using lambdas in tests in gcc by onqtam · 8 years ago
  96. ed0767e finalized work on the no exceptions mode by onqtam · 8 years ago
  97. 1687de8 - removed duplicated warnings (ones which are included by wall/wextra) by onqtam · 8 years ago
  98. b6ac3f2 updated article... by onqtam · 8 years ago
  99. 38115fb updated article by onqtam · 8 years ago
  100. 3de57e3 Add assertion macros regarding std::exception handling to examples/ directory by Elias Kosunen · 8 years ago