-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestingPage.html
More file actions
69 lines (49 loc) · 1.59 KB
/
Copy pathtestingPage.html
File metadata and controls
69 lines (49 loc) · 1.59 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<title>Campus Tycoon - Official Site</title>
<link rel="icon" type="image/png" href="assets/Logo_No_Text-Circle.png">
<link rel="stylesheet" href="screenshotPageStyles.css">
</head>
<body>
<div class="header">
<h1>Campus Tycoon</h1>
<p>Here are some screen shots of the testing methods we have used to ensure our code is running as intended</p>
</div>
<div class="sidebar">
<a id="backBtn" href="index.html">Main Menu</a>
<a href="#image1">Leaderboard Test</a>
<a href="#image2">Tuple Test</a>
<a href="#image3">Unit Tests</a>
<a href="#image4">Unit Tests Coverage Report</a>
<a href="#image5">Coordinate Test</a>
<a href="#image6">Money Handler Test</a>
</div>
<div class="content">
<div id="image1" class="image-section">
<h2>Leaderboard Test</h2>
<img src="assets/leaderboardUnitTesting1.png" >
</div>
<div id="image2" class="image-section">
<h2>Tuple Test</h2>
<img src="assets/tupleTest.png">
</div>
<div id="image3" class="image-section">
<h2>Unit Tests</h2>
<img src="assets/unitTests1.png" >
</div>
<div id="image4" class="image-section">
<h2>Unit Test Coverage Report</h2>
<img src="assets/unitTests2.png" >
</div>
<div id="image5" class="image-section">
<h2>Coordinate Test</h2>
<img src="assets/coordTest.png" >
</div>
<div id="image6" class="image-section">
<h2>Money Handler Test</h2>
<img src="assets/moneyHandlerTest.png" >
</div>
</div>
</body>
</html>