Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoronqtam <vik.kirilov@gmail.com>2021-12-15 16:42:40 +0300
committeronqtam <vik.kirilov@gmail.com>2021-12-15 16:42:40 +0300
commit8ee354591f81f0159a2cb9b2795fae9999844df5 (patch)
tree7987b17ccc36943241bbe5555b531c3a2ab5c47a /scripts
parent367098b240b0534f4b813eab87ae91e9f32b20a8 (diff)
removed most references to onqtam and replaced with doctest - the github org
Diffstat (limited to 'scripts')
-rw-r--r--scripts/data/article.txt12
-rw-r--r--scripts/data/article2.txt56
-rw-r--r--scripts/random_dev_notes.md6
3 files changed, 34 insertions, 40 deletions
diff --git a/scripts/data/article.txt b/scripts/data/article.txt
index 206d1b08..7854a328 100644
--- a/scripts/data/article.txt
+++ b/scripts/data/article.txt
@@ -2,7 +2,7 @@
doctest is a fully open source light and feature-rich C++11 single-header testing framework for unit tests and TDD.
-Web Site: https://github.com/onqtam/doctest
+Web Site: https://github.com/doctest/doctest
Version tested: 2.0.0
System requirements: C++11 or newer
License & Pricing: MIT, free
@@ -249,9 +249,9 @@ The development of doctest is supported with donations.
[4] https://github.com/cpputest/cpputest
[5] https://github.com/google/googletest
[6] https://en.wikipedia.org/wiki/List_of_unit_testing_frameworks#C.2B.2B
-[7] https://github.com/onqtam/doctest/blob/master/doc/markdown/faq.md#how-is-doctest-different-from-catch
-[8] https://github.com/onqtam/doctest/blob/master/doc/markdown/features.md
-[9] https://github.com/onqtam/doctest/blob/master/doc/markdown/roadmap.md
-[10] https://github.com/onqtam/doctest/blob/master/doc/markdown/benchmarks.md
-[11] https://github.com/onqtam/doctest/blob/master/doc/markdown/assertions.md#fast-asserts
+[7] https://github.com/doctest/doctest/blob/master/doc/markdown/faq.md#how-is-doctest-different-from-catch
+[8] https://github.com/doctest/doctest/blob/master/doc/markdown/features.md
+[9] https://github.com/doctest/doctest/blob/master/doc/markdown/roadmap.md
+[10] https://github.com/doctest/doctest/blob/master/doc/markdown/benchmarks.md
+[11] https://github.com/doctest/doctest/blob/master/doc/markdown/assertions.md#fast-asserts
[12] http://baptiste-wicht.com/posts/2016/09/blazing-fast-unit-test-compilation-with-doctest-11.html
diff --git a/scripts/data/article2.txt b/scripts/data/article2.txt
index 0555366e..9f94d952 100644
--- a/scripts/data/article2.txt
+++ b/scripts/data/article2.txt
@@ -122,32 +122,32 @@ Testing is a fundamental aspect of software engineering and the stakes are getti
doctest [0] stands out with its ability to write tests in a new and easier way - unlocking the potential for more thorough, up-to-date and uniform testing. Locality is king not only in CPU caches. There is quite a lot of work left which can be seen in the roadmap [27] - exciting times ahead! If you are curious about implementation details of the framework make sure to checkout the CppCon [28] presentation!
-[0] https://github.com/onqtam/doctest
-[1] https://github.com/onqtam/doctest/blob/master/doc/markdown/benchmarks.md
-[2] https://starcharts.herokuapp.com/onqtam/doctest
-[3] https://github.com/onqtam/doctest/blob/master/doc/markdown/assertions.md#expression-decomposing-asserts
-[4] https://github.com/onqtam/doctest/blob/master/doc/markdown/faq.md#is-doctest-thread-aware
-[5] https://github.com/onqtam/doctest/blob/master/doc/markdown/configuration.md#doctest_config_no_exceptions
-[6] https://github.com/onqtam/doctest/blob/master/doc/markdown/tutorial.md#test-cases-and-subcases
-[7] https://github.com/onqtam/doctest/blob/master/doc/markdown/logging.md
-[8] https://github.com/onqtam/doctest/blob/master/doc/markdown/reporters.md
-[9] https://github.com/onqtam/doctest/blob/master/doc/markdown/parameterized-tests.md#templated-test-cases---parameterized-by-type
-[10] https://github.com/onqtam/doctest/blob/master/doc/markdown/testcases.md#test-suites
-[11] https://github.com/onqtam/doctest/blob/master/doc/markdown/testcases.md#decorators
-[12] https://github.com/onqtam/doctest/blob/master/doc/markdown/commandline.md
-[13] https://github.com/onqtam/doctest/blob/master/doc/markdown/features.md#other-features
-[14] https://github.com/onqtam/doctest/blob/master/doc/markdown/benchmarks.md#cost-of-including-the-header
-[15] https://github.com/onqtam/doctest/blob/master/doc/markdown/benchmarks.md#cost-of-an-assertion-macro
-[16] https://github.com/onqtam/doctest/blob/master/doc/markdown/configuration.md#doctest_config_disable
-[17] https://github.com/onqtam/doctest/blob/master/doc/markdown/features.md#unintrusive-transparent
-[18] https://github.com/onqtam/doctest/blob/master/doc/markdown/features.md#extremely-portable
-[19] https://github.com/onqtam/doctest/blob/master/doc/markdown/main.md
-[20] https://github.com/onqtam/doctest/blob/master/doc/markdown/configuration.md#doctest_config_implementation_in_dll
-[21] https://github.com/onqtam/doctest/tree/master/examples/executable_dll_and_plugin
-[22] https://github.com/onqtam/doctest/blob/master/doc/markdown/assertions.md#using-asserts-out-of-a-testing-context
-[23] https://github.com/onqtam/doctest/blob/master/examples/all_features/asserts_used_outside_of_tests.cpp#L18
-[24] https://github.com/onqtam/doctest/blob/master/doc/markdown/assertions.md#binary-and-unary-asserts
-[25] https://github.com/onqtam/doctest/blob/master/doc/markdown/configuration.md#doctest_config_super_fast_asserts
-[26] https://github.com/onqtam/doctest/blob/master/doc/markdown/faq.md#how-to-get-the-best-compile-time-performance-with-the-framework
-[27] https://github.com/onqtam/doctest/blob/master/doc/markdown/roadmap.md
+[0] https://github.com/doctest/doctest
+[1] https://github.com/doctest/doctest/blob/master/doc/markdown/benchmarks.md
+[2] https://starcharts.herokuapp.com/doctest/doctest
+[3] https://github.com/doctest/doctest/blob/master/doc/markdown/assertions.md#expression-decomposing-asserts
+[4] https://github.com/doctest/doctest/blob/master/doc/markdown/faq.md#is-doctest-thread-aware
+[5] https://github.com/doctest/doctest/blob/master/doc/markdown/configuration.md#doctest_config_no_exceptions
+[6] https://github.com/doctest/doctest/blob/master/doc/markdown/tutorial.md#test-cases-and-subcases
+[7] https://github.com/doctest/doctest/blob/master/doc/markdown/logging.md
+[8] https://github.com/doctest/doctest/blob/master/doc/markdown/reporters.md
+[9] https://github.com/doctest/doctest/blob/master/doc/markdown/parameterized-tests.md#templated-test-cases---parameterized-by-type
+[10] https://github.com/doctest/doctest/blob/master/doc/markdown/testcases.md#test-suites
+[11] https://github.com/doctest/doctest/blob/master/doc/markdown/testcases.md#decorators
+[12] https://github.com/doctest/doctest/blob/master/doc/markdown/commandline.md
+[13] https://github.com/doctest/doctest/blob/master/doc/markdown/features.md#other-features
+[14] https://github.com/doctest/doctest/blob/master/doc/markdown/benchmarks.md#cost-of-including-the-header
+[15] https://github.com/doctest/doctest/blob/master/doc/markdown/benchmarks.md#cost-of-an-assertion-macro
+[16] https://github.com/doctest/doctest/blob/master/doc/markdown/configuration.md#doctest_config_disable
+[17] https://github.com/doctest/doctest/blob/master/doc/markdown/features.md#unintrusive-transparent
+[18] https://github.com/doctest/doctest/blob/master/doc/markdown/features.md#extremely-portable
+[19] https://github.com/doctest/doctest/blob/master/doc/markdown/main.md
+[20] https://github.com/doctest/doctest/blob/master/doc/markdown/configuration.md#doctest_config_implementation_in_dll
+[21] https://github.com/doctest/doctest/tree/master/examples/executable_dll_and_plugin
+[22] https://github.com/doctest/doctest/blob/master/doc/markdown/assertions.md#using-asserts-out-of-a-testing-context
+[23] https://github.com/doctest/doctest/blob/master/examples/all_features/asserts_used_outside_of_tests.cpp#L18
+[24] https://github.com/doctest/doctest/blob/master/doc/markdown/assertions.md#binary-and-unary-asserts
+[25] https://github.com/doctest/doctest/blob/master/doc/markdown/configuration.md#doctest_config_super_fast_asserts
+[26] https://github.com/doctest/doctest/blob/master/doc/markdown/faq.md#how-to-get-the-best-compile-time-performance-with-the-framework
+[27] https://github.com/doctest/doctest/blob/master/doc/markdown/roadmap.md
[28] https://www.youtube.com/watch?v=eH1CxEC29l8
diff --git a/scripts/random_dev_notes.md b/scripts/random_dev_notes.md
index 1bdd2545..f47b98b8 100644
--- a/scripts/random_dev_notes.md
+++ b/scripts/random_dev_notes.md
@@ -5,8 +5,6 @@ move down from /Wall to /W4 for Visual Studio... /Wall is absolutely unnecessary
https://github.com/catchorg/Catch2/blob/master/docs/tostring.md#catchis_range-specialisation
-rope-ish startup of doctest - and filter duplicates on run()
-
https://blog.travis-ci.com/2018-10-11-windows-early-release
add in the faq about the compile errors with stream<<"array" - nikola goranov, also moving to catch undef/define stuffs - use vararg macro, also make the "moving from catch to doctest" easier to find, also this: https://stackoverflow.com/questions/35530850/how-to-require-a-semicolon-after-a-macro/52122660#52122660
@@ -66,7 +64,3 @@ https://github.com/martinmoene/catch-lest-other-comparison
- https://github.com/catchorg/Catch2/pull/1405
- toString trouble - https://github.com/catchorg/Catch2/issues/741
- https://github.com/catchorg/Catch2/commit/33ed1773f40b406dbf3b7201bf52694bd86b1503
-
-- I suspect -Wsign-compare is not being silenced by the pragmas...
- see this build - https://travis-ci.org/onqtam/game/jobs/196987454
- check_eq(numDigits(0), 1); numDigits returns uint32