Skip to content

Commit ea60b17

Browse files
committed
Capital case in titles of slides
1 parent a435f85 commit ea60b17

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

05_testing_and_ci/intro_slides.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ assert condition, "message"
9090

9191
---
9292

93-
## Unit testing
93+
## Unit Testing
9494

9595
- Catching errors with assertions is good but preventing them is better!
9696
- A *unit* is a single function in one situation.
@@ -101,7 +101,7 @@ assert condition, "message"
101101

102102
---
103103

104-
## Integration testing
104+
## Integration Testing
105105

106106
- Test whether several units work in conjunction.
107107
- *Integrate* units and test them together in an *integration* test.
@@ -111,7 +111,7 @@ assert condition, "message"
111111

112112
---
113113

114-
## Regression testing
114+
## Regression Testing
115115

116116
- Generating an expected result is not possible in some situations.
117117
- Compare the current actual result with a previous actual result.
@@ -129,7 +129,7 @@ assert condition, "message"
129129

130130
---
131131

132-
## Comparing floating-point variables
132+
## Comparing Floating-point Variables
133133

134134
- Very often quantities in simulation software are `float` / `double`.
135135
- Such quantities cannot be compared to exact values, an approximation is necessary.
@@ -139,7 +139,7 @@ assert condition, "message"
139139

140140
---
141141

142-
## Test-driven development (TDD)
142+
## Test-driven Development (TDD)
143143

144144
- Principle of writing a test and then write a code to fulfill the test.
145145
- Advantages:
@@ -155,7 +155,7 @@ Source: https://en.wikipedia.org/wiki/Test-driven_development
155155

156156
---
157157

158-
## Verifying a test
158+
## Verifying a Test
159159

160160
- Test written as part of a bug-fix:
161161
- Reproduce the bug in the test by ensuring that the test fails.

0 commit comments

Comments
 (0)