Bring tests up to date.

This commit is contained in:
Ernie Pasveer
2023-08-26 10:50:58 -05:00
parent b26e2c8395
commit 151782a84c
13 changed files with 175 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include "function1.h"
#include <iostream>
#include <unistd.h>
void function1 (const std::string& text) {
int i = 42;
sleep(2); // Simulate doing work.
std::cout << text << i << std::endl;
sleep(3); // Simulate doing work.
}