mirror of
https://github.com/jorenchik/testing-spring-2024.git
synced 2026-02-04 06:42:02 +00:00
fix: combine both lib files
This commit is contained in:
@@ -2,10 +2,9 @@
|
|||||||
|
|
||||||
#include "prep/prep.hh"
|
#include "prep/prep.hh"
|
||||||
|
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
void run() {
|
void run() {
|
||||||
std::cout << add(2, 2) << std::endl;
|
Room room1(1, "Room 1", 1710087364, RoomStatus::IN_PROGRESS);
|
||||||
|
Room room2(2, "Room 2", 1710087384, RoomStatus::ENDED);
|
||||||
}
|
}
|
||||||
|
|
||||||
int functionToTest(int a) {
|
int functionToTest(int a) {
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
#include "main_lib.h"
|
|
||||||
#include "Prep.h"
|
|
||||||
|
|
||||||
void run() {
|
|
||||||
Room room1(1, "Room 1", 1710087364, RoomStatus::IN_PROGRESS);
|
|
||||||
Room room2(2, "Room 2", 1710087384, RoomStatus::ENDED);
|
|
||||||
}
|
|
||||||
|
|
||||||
int functionToTest(int a) { return a * 2; }
|
|
||||||
Reference in New Issue
Block a user