From 02b3672ab13a3a3c6d07e521f2b19ae3a23eb7bb Mon Sep 17 00:00:00 2001 From: Chris Hartjes Date: Sun, 8 Jul 2012 21:53:21 -0400 Subject: [PATCH 1/3] Added in brief summary of testing information --- index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.html b/index.html index 9ca5126..486cfa8 100644 --- a/index.html +++ b/index.html @@ -32,5 +32,8 @@ layout: default {% capture frameworks_content %}{% include popular-frameworks.md %}{% endcapture %} {{ frameworks_content|markdownify }} +{% capture testing_content %}{% include testing.md %}{% endcapture %} +{{ testing_content|markdownify }} + {% capture links_content %}{% include links-and-resources.md %}{% endcapture %} {{ links_content|markdownify }} From 910fb5e072598db65e467643435e9933c3a40afb Mon Sep 17 00:00:00 2001 From: Chris Hartjes Date: Sun, 8 Jul 2012 21:53:37 -0400 Subject: [PATCH 2/3] Added in content about testing --- _includes/testing.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 _includes/testing.md diff --git a/_includes/testing.md b/_includes/testing.md new file mode 100644 index 0000000..9b36cd9 --- /dev/null +++ b/_includes/testing.md @@ -0,0 +1,17 @@ +# Testing + +Writing automated tests for your PHP code is considered a best practice and can lead to well-built +applications. Automated tests are a great tool for making sure your application +does not break when you are making changes or adding new functionality. + +Some common tools are: + +* [PHPUnit](http://phpunit.de) is the dominant [unit-testing](http://en.wikipedia.org/wiki/Unit_testing) framework used +by PHP developers +* [Behat](http://behat.org) is testing framework for those who prefer to +use [Behaviour Driven Development](http://en.wikipedia.org/wiki/Behaviour-driven_development) to +test their applications +* [Selenium](http://seleniumhq.org/) is a tool that can automate browser usage +for testing purposes + +[Back to Top](#top){.top} From 0da8f3a35dd36815825068c12cbecf0e680e34ae Mon Sep 17 00:00:00 2001 From: Chris Hartjes Date: Mon, 9 Jul 2012 09:10:41 -0400 Subject: [PATCH 3/3] Removed comments attached to links since some people apparantly think it makes the markdown files hard to read --- _includes/testing.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/_includes/testing.md b/_includes/testing.md index 9b36cd9..118dd3e 100644 --- a/_includes/testing.md +++ b/_includes/testing.md @@ -6,12 +6,8 @@ does not break when you are making changes or adding new functionality. Some common tools are: -* [PHPUnit](http://phpunit.de) is the dominant [unit-testing](http://en.wikipedia.org/wiki/Unit_testing) framework used -by PHP developers -* [Behat](http://behat.org) is testing framework for those who prefer to -use [Behaviour Driven Development](http://en.wikipedia.org/wiki/Behaviour-driven_development) to -test their applications -* [Selenium](http://seleniumhq.org/) is a tool that can automate browser usage -for testing purposes +* [PHPUnit](http://phpunit.de) +* [Behat](http://behat.org) +* [Selenium](http://seleniumhq.org/) [Back to Top](#top){.top}