-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestdoc.html
More file actions
47 lines (43 loc) · 1.16 KB
/
testdoc.html
File metadata and controls
47 lines (43 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<h1 class="test">Tasks class Tests</h1>
<link rel="stylesheet" href="testdoc.css">
</head>
<body>
<div class = test>
<h2>Test 1: creating a task</h2>
<h3>Adds a task to the tasks list</h3>
<p id="name1"></p>
<p id="info1"></p>
<p id="time1"></p>
<p id="freq1"></p>
<p id="expd1"></p>
</div>
<div class = test>
<h2>Test 2: Multiple tasks</h2>
<h3>Adds several tasks to the list and displays them in order</h3>
<p id="list2"></p>
</div>
<div class = test>
<h2>Test 3: Removing a task</h2>
<h3>Adds several tasks to the list and removes the funny one</h3>
<p id="prelist3"></p>
<p id="postlist3"></p>
</div>
<div class = test>
<h2>Test 4: Saving task list</h2>
<h3>Getting save string from Task class.</h3>
<p id="save4"></p>
</div>
<div class = test>
<h2>Test 5: tasks from save</h2>
<h3>Generating a list of tasks from a saveString</h3>
<p id="save5"></p>
<p id="names5"></p>
</div>
<h1 class="test">Task class tests</h1>
</body>
<script src="task.js"></script> <!--You have reference every script you need to use-->
<script src="testdoc.js"></script>
</html>