From 00416c4b114312d637ae53b691c71db67a85ddf5 Mon Sep 17 00:00:00 2001 From: Josh Lockhart Date: Tue, 19 Jun 2018 14:49:42 -0400 Subject: [PATCH] Update Testing links with https --- _posts/11-02-01-Test-Driven-Development.md | 16 ++++++++-------- _posts/11-03-01-Behavior-Driven-Development.md | 8 ++++---- _posts/11-04-01-Complementary-Testing-Tools.md | 6 +++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/_posts/11-02-01-Test-Driven-Development.md b/_posts/11-02-01-Test-Driven-Development.md index 9c319dd..745f7f1 100644 --- a/_posts/11-02-01-Test-Driven-Development.md +++ b/_posts/11-02-01-Test-Driven-Development.md @@ -5,7 +5,7 @@ anchor: test_driven_development ## Test Driven Development {#test_driven_development_title} -From [Wikipedia](http://en.wikipedia.org/wiki/Test-driven_development): +From [Wikipedia](https://wikipedia.org/wiki/Test-driven_development): > Test-driven development (TDD) is a software development process that relies on the repetition of a very short > development cycle: first the developer writes a failing automated test case that defines a desired improvement or new @@ -32,17 +32,17 @@ The other use for unit tests is contributing to open source. If you can write a (i.e. fails), then fix it, and show the test passing, patches are much more likely to be accepted. If you run a project which accepts pull requests then you should suggest this as a requirement. -[PHPUnit](http://phpunit.de) is the de-facto testing framework for writing unit tests for PHP applications, but there +[PHPUnit](https://phpunit.de/) is the de-facto testing framework for writing unit tests for PHP applications, but there are several alternatives * [atoum](https://github.com/atoum/atoum) * [Kahlan](https://github.com/crysalead/kahlan) -* [Peridot](http://peridot-php.github.io/) +* [Peridot](https://peridot-php.github.io/) * [SimpleTest](http://simpletest.org) ### Integration Testing -From [Wikipedia](http://en.wikipedia.org/wiki/Integration_testing): +From [Wikipedia](https://wikipedia.org/wiki/Integration_testing): > Integration testing (sometimes called Integration and Testing, abbreviated "I&T") is the phase in software testing in > which individual software modules are combined and tested as a group. It occurs after unit testing and before @@ -62,7 +62,7 @@ users of the application. #### Functional Testing Tools -* [Selenium](http://seleniumhq.com) -* [Mink](http://mink.behat.org) -* [Codeception](http://codeception.com) is a full-stack testing framework that includes acceptance testing tools -* [Storyplayer](http://datasift.github.io/storyplayer) is a full-stack testing framework that includes support for creating and destroying test environments on demand +* [Selenium](https://docs.seleniumhq.org/) +* [Mink](http://mink.behat.org/) +* [Codeception](https://codeception.com/) is a full-stack testing framework that includes acceptance testing tools +* [Storyplayer](https://datasift.github.io/storyplayer/) is a full-stack testing framework that includes support for creating and destroying test environments on demand diff --git a/_posts/11-03-01-Behavior-Driven-Development.md b/_posts/11-03-01-Behavior-Driven-Development.md index 4585162..e952200 100644 --- a/_posts/11-03-01-Behavior-Driven-Development.md +++ b/_posts/11-03-01-Behavior-Driven-Development.md @@ -25,7 +25,7 @@ purpose. This framework is inspired by the [RSpec project][Rspec] for Ruby. [Behat]: http://behat.org/ -[Cucumber]: http://cukes.info/ -[PHPSpec]: http://www.phpspec.net/ -[RSpec]: http://rspec.info/ -[Codeception]: http://codeception.com/ +[Cucumber]: https://cucumber.io/ +[PHPSpec]: https://www.phpspec.net/ +[RSpec]: https://rspec.info/ +[Codeception]: https://codeception.com/ diff --git a/_posts/11-04-01-Complementary-Testing-Tools.md b/_posts/11-04-01-Complementary-Testing-Tools.md index e0af3a4..0f199ef 100644 --- a/_posts/11-04-01-Complementary-Testing-Tools.md +++ b/_posts/11-04-01-Complementary-Testing-Tools.md @@ -16,9 +16,9 @@ libraries useful for any preferred approach taken. [PHPSpec] and can be used with [PHPUnit]. -[Selenium]: http://seleniumhq.org/ +[Selenium]: https://www.seleniumhq.org/ [integrated with PHPUnit]: https://github.com/giorgiosironi/phpunit-selenium/ [Mockery]: https://github.com/padraic/mockery -[PHPUnit]: http://phpunit.de/ -[PHPSpec]: http://www.phpspec.net/ +[PHPUnit]: https://phpunit.de/ +[PHPSpec]: https://www.phpspec.net/ [Prophecy]: https://github.com/phpspec/prophecy