aboutsummaryrefslogtreecommitdiff
path: root/src/test.cpp
diff options
context:
space:
mode:
authorSan Jacobs2022-08-22 12:17:25 +0200
committerSan Jacobs2022-08-22 12:17:25 +0200
commit3bbc5ceb635a344d413e65249b4a33b0ed30feab (patch)
treeb2f847a8e041906cc4fa3b892d07f33d6f8cdcba /src/test.cpp
parentb604893e748485d6c9aa4eeb6d40ba432ed052c6 (diff)
downloadsatscalc-3bbc5ceb635a344d413e65249b4a33b0ed30feab.tar.gz
satscalc-3bbc5ceb635a344d413e65249b4a33b0ed30feab.tar.bz2
satscalc-3bbc5ceb635a344d413e65249b4a33b0ed30feab.zip
Completed ruleset! Just testing left before alpha!
Diffstat (limited to 'src/test.cpp')
-rw-r--r--src/test.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test.cpp b/src/test.cpp
index 8d36f3a..d5b2d22 100644
--- a/src/test.cpp
+++ b/src/test.cpp
@@ -71,6 +71,15 @@ void test(){
std::cout << "\nRewinding 10 days...\n";
wind(testtime, 0, 0, -10);
std::cout << "Testtime: " << timeprint(testtime) << std::endl;
+
+
+ std::cout << "\nForwarding 100 days...\n";
+ wind(testtime, 0, 0, 100);
+ std::cout << "Testtime: " << timeprint(testtime) << std::endl;
+
+ std::cout << "\nRewinding 100 days...\n";
+ wind(testtime, 0, 0, -100);
+ std::cout << "Testtime: " << timeprint(testtime) << std::endl;