-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.html
111 lines (93 loc) · 3.09 KB
/
resources.html
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
<html>
<!-- Standard Head Part -->
<head>
<title>Charlie Poole - Resources</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-US">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="css/screen.css">
<link rel="shortcut icon" href="/favicon.ico">
<script src="/js/common.js"></script>
</head>
<!-- End Standard Head Part -->
<body>
<!-- Standard header -->
<div id="header">
<div id="logo"><a href="/"><big>C</big>harlie<big>P</big>oole</a></div>
<ul id="topnav">
<li><a href="/home.html">Home</a></li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/articles.html">Articles</a></li>
<li><a href="/events.html">Events</a></li>
<li class="active">Resources</li>
<li><a href="/contact.html">Contact</a></li>
</ul>
<div id="menu-button" onclick="toggleMenuDisplay()">
<img src="/images/menu-button.png"/>
</div>
</div>
<!-- End of Header -->
<!-- Content -->
<div id="content">
<h1>Resources</h1>
<div class="section">
<a name="ref1"><h2>Presentations</h2></a>
<dl>
<p><dt>
<b><a href="downloads/When GUI Tests are Hard.pdf">When GUI Tests are Hard</a></b>
</dt>
<dd>
GUI tests sometimes seem hard. But this "hardness" may be telling
us something about our design.
</dd>
</dl>
<!-- <p><a href="slides.html">Slides</a> from presentations I've made.</p> -->
</div>
<div class="section">
<a name="ref2"><h2>Source Code</h2></a>
<dl>
<p><dt>
<b><a href="source/ExpandingLabel.cs">ExpandingLabel.cs</a></b>
</dt>
<dd>
A special type of label which can display a tooltip-like
window to show the full extent of any text which doesn't
fit. The window may be placed directly over the label
or immediately beneath it and will expand to fit in
a horizontal, vertical or both directions as needed.
</dd>
<p><dt>
<b><a href="source/FolderBrowser.cs">FolderBrowser.cs</a></b>
</dt>
<dd>
Wrapper class for the Win32 SHBrowseForFolder function. Allows the
user to select a particular folder or create a new one.
</dd>
<p><dt>
<b><a href="source/WaitCursor.cs">WaitCursor.cs</a></b>
</dt>
<dd>
Utility class used to display a wait cursor
while a long operation takes place and
guarantee that it will be removed on exit.
</dd>
<p><dt>
<b><a href="source/SampleFixtureExtensionBuilder.cs">SampleFixtureExtensionBuilder.cs</a></b>
</dt>
<dd>
Corrected version of a sample source file from NUnit 2.4 Beta 2.
</dd>
</dl>
<!--<p>Currently this section has only a few <a href="source.html">C# Source Code</a>
examples</p>-->
</div>
</div>
<!-- End Content -->
<!-- Standard CharliePoole.org footer -->
<div id="footer">
Copyright © 2002-2017 Charlie Poole. All rights reserved<br>
<big>c</big>harlie<big>p</big>oole at gmail dot com
</div>
</body>
</html>