-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.cpp
More file actions
executable file
·39 lines (32 loc) · 827 Bytes
/
test.cpp
File metadata and controls
executable file
·39 lines (32 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* Copyright 2023 University of Michigan EECS183
*
* test.cpp
* Project UID 848fee0125dbb5eb53ed294f20dbef81
*
* Final Project - Elevators
*/
////////////////////////////////////////////////
// You will submit test.cpp to the autograder //
// FOR LAB 8, but NOT the final project Core //
////////////////////////////////////////////////
#include <iostream>
#include <fstream>
#include <string>
#include "AI.h"
#include "Building.h"
#include "BuildingState.h"
#include "Elevator.h"
#include "Floor.h"
#include "Game.h"
#include "Move.h"
#include "Person.h"
#include "SatisfactionIndex.h"
#include "Utility.h"
using namespace std;
// declare your test functions here
void start_tests() {
// call your test functions here
return;
}
// write test functions here