Add some TODOs
This commit is contained in:
10
main.cpp
10
main.cpp
@@ -6,10 +6,14 @@
|
||||
|
||||
#include "include/jtest/jtest.hpp"
|
||||
|
||||
// Look into a different mechanism more similar to gtest wherein we have a TEST macro
|
||||
// that declares and "registers" a test, and then inside our main block we call RUN_ALL_TESTS(argc, argv);
|
||||
// TODO: Look into a different mechanism more similar to gtest wherein we have a TEST macro that declares and "registers" a test, and then inside our main block we call RUN_ALL_TESTS(argc, argv);
|
||||
// TODO: Keep running tally of total checks, checks passed, and checks failed
|
||||
// TODO: Provide introspection insofar as which assertion check failed.
|
||||
// TODO: Provide alternate checks (google test has specific assertations for handling floats, for example) (Are these actually necessary??)
|
||||
// TODO: Automatic test discovery
|
||||
// TODO: Implement log-file-specification-capability in jlog so we can log to test_results.txt specifically.
|
||||
|
||||
int main()
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
|
||||
TEST("Test1", []{
|
||||
|
Reference in New Issue
Block a user