-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.cfm
More file actions
78 lines (57 loc) · 2.54 KB
/
index.cfm
File metadata and controls
78 lines (57 loc) · 2.54 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
70
71
72
73
74
75
76
77
78
<html>
<head>
<title></title>
</head>
<body>
<h1>gpickin.com - Unit Testing Blog Series Index</h1>
<ul>
<li>
<a href="/blog01/">01 - Setting up my Testing Environment to Test Unit Testing</a>
<ul>
<li><a href="/blog01/Step1/">Step 1 - Basic Folder Structure and Download TestBox</a></li>
</ul>
</li>
<li>
<a href="/blog02/">02 - TDD - Lets Write Tests for our Objects, then Build them to Pass the Tests</a>
<ul>
<li><a href="/blog02/Step1/">Step 1 - Remove the Dummy / Sample Tests from our Test Suites</a></li>
<li><a href="/blog02/Step2/">Step 2 - Add Tests to Test if Our Objects Initialize Correctly</a></li>
<li><a href="/blog02/Step3/">Step 3 - Create a Test for Method count() in Website.cfc</a></li>
<li><a href="/blog02/Step4/">Step 4 - Create the Method count() in Website.cfc</a></li>
<li><a href="/blog02/Step5/">Step 5 - Add Second Spec / Assertion to testCount() Test</a></li>
</ul>
</li>
<li>
<a href="/blog03/">03 - More TDD - Building out our Component Objects</a>
<ul>
<li><a href="/blog03/Step1/">Step 1 - Add testValidDomainName() Test</a></li>
<li><a href="/blog03/Step2/">Step 2 - Add isValidDomainName() Method</a></li>
<li><a href="/blog03/Step3/">Step 3 - Lets check our Domain Name Segment for Starting and Ending Characters</a></li>
</ul>
</li>
<li>
<a href="/blog04/">04 - Testing with Dependencies</a>
<ul>
<li><a href="/blog04/Step1/">Step 1 - Create a test for a New Dependent Function</a></li>
<li><a href="/blog04/Step2/">Step 2 - Create our saveDomainName function to satisfy the test</a></li>
<li><a href="/blog04/Step3/">Step 3 - How do we Resolve our Dependencies</a></li>
</ul>
</li>
<li>
<a href="/blog05/">05 - External Dependencies and Dependency Injection</a>
<ul>
<li><a href="/blog05/Step1/">Step 1 - Create testGetWebsiteSuccess() test</a></li>
<li><a href="/blog05/Step2/">Step 2 - Create WebsiteDAO.cfc and Introduction to Dependency Injection</a></li>
</ul>
</li>
<li>
<a href="/blog06/">06 - Mocking External Dependencies Part 2</a>
<ul>
<li><a href="/blog06/Step1/">Step 1 - Mock our WebsiteDAO.cfc</a></li>
<li><a href="/blog06/Step2/">Step 2 - Mock our getWebsite() method in our Mocked WebsiteDAO</a></li>
<li><a href="/blog06/Step3/">Step 3 - Create testGetWebsiteNotFound() test and mock the results</a></li>
</ul>
</li>
</ul>
</body>
</html>