forked from Danielbet21/Amusement_Park
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
38 lines (31 loc) · 755 Bytes
/
main.c
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
#include <stdio.h>
#include <crtdbg.h> // TODO: remove before release
#include <stdlib.h>
#include <time.h>
#include "TestsShai.h"
#include "time.h"
#include "General.h"
#include "def.h"
#include "Date.h"
#include "Weather.h"
#include "Time.h"
#include "Shop.h"
#include "Ticket.h"
#include "TicketMaster.h"
#include "TestsDaniel.h"
#include "LunaPark.h"
#include "exe.h"
int main() {
srand((unsigned int)time(NULL)); // TODO NEED TO ADD TO FINAL PROJECT
runAllTestsShai();
runAllTestsDaniel();
for (int i = 0; i < 20; i++)
{
printf("\n");
}
//runManualProgram();
// Debug memory leaks
_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_WNDW); // this is the pop up message (disable for memory leek location)
_CrtDumpMemoryLeaks();
return 0;
}