From d570bf841f199f37e371c7665f133e6c939382ed Mon Sep 17 00:00:00 2001 From: Steven Benner Date: Fri, 13 Jul 2012 02:38:22 -0700 Subject: [PATCH] American english fix. --- _posts/08-02-01-Test-Driven-Development.md | 2 +- _posts/08-04-01-Complementary-Testing-Tools.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/08-02-01-Test-Driven-Development.md b/_posts/08-02-01-Test-Driven-Development.md index 04e2255..4498555 100644 --- a/_posts/08-02-01-Test-Driven-Development.md +++ b/_posts/08-02-01-Test-Driven-Development.md @@ -17,7 +17,7 @@ expected, from the point you build them all the way through the development cycl values going in and out of various functions and methods, you can make sure the internal logic is working correctly. By using Dependency Injection and building "mock" classes and stubs you can verify that dependencies are correctly used for even better test coverage. -When you create a class or function you should create a unit test for each behaviour it must have. At a very basic level you should +When you create a class or function you should create a unit test for each behavior it must have. At a very basic level you should make sure it errors if you send it bad arguments and make sure it works if you send it valid arguments. This will help ensure that when you make changes to this class or function later on in the development cycle that the old functionality continues to work as expected. The only alternative to this would be diff --git a/_posts/08-04-01-Complementary-Testing-Tools.md b/_posts/08-04-01-Complementary-Testing-Tools.md index 1ba5892..7abc24b 100644 --- a/_posts/08-04-01-Complementary-Testing-Tools.md +++ b/_posts/08-04-01-Complementary-Testing-Tools.md @@ -4,7 +4,7 @@ isChild: true ## Complementary Testing Tools -Besides individual testing and behaviour driven frameworks, there are also a number of generic frameworks and helper libraries useful for any preferred approach taken. +Besides individual testing and behavior driven frameworks, there are also a number of generic frameworks and helper libraries useful for any preferred approach taken. ### Tool Links