Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

NetTuts.com:
Testing Like a Boss in Laravel: Models
Feb 19, 2013 @ 19:42:04

NetTuts.com has a new tutorial in their series covering the use of the Laravel 4 framework. In this new post, though, they show how to ensure quality in your application by unit testing your models (the "M" in "MVC").

If you’re hoping to learn why tests are beneficial, this is not the article for you. Over the course of this tutorial, I will assume that you already understand the advantages, and are hoping to learn how best to write and organize your tests in Laravel 4. Version 4 of Laravel offers serious improvements in relation to testing, when compared to its previous release. This is the first article of a series that will cover how to write tests for Laravel 4 applications. We’ll begin the series by discussing model testing.

They show how to set up the environment - making it use an in-memory SQLite database, call the migration to initialize it and run a "createApplication" to bootstrap the app. They then include an example if tests written against a "Post" model that extends the Ardent class. It also uses the FactoryMuff package to create objects. Some example tests are included, checking things like object properties, "posted at" date formats and the "slug" of a page (in a Page model and its tests).

tagged: unittest laravel4 application tutorial ardent factorymuff

Link:


Trending Topics: