zf2-boiler-app/app-test

ZF2 BoilerApp tests tools

dev-master / 1.0.x-dev 2013-10-07 17:31 UTC

This package is auto-updated.

Last update: 2024-04-24 03:20:12 UTC


README

Build Status Latest Stable Version Total Downloads

NOTE : This module is in heavy development, it's not usable yet. If you want to contribute don't hesitate, I'll review any PR.

Introduction

ZF2 BoilerApp "Test" module is a Zend Framework 2 module that provides tools to test modules of ZF2 BoilerApp

Requirements

Installation

Main Setup

By cloning project

  1. Clone this project into your ./vendor/ directory.

With composer

  1. Add this project in your composer.json:

    "require-dev": {
        "zf2-boiler-app/app-test": "dev-master"
    }
  2. Now tell composer to download ZF2 BoilerApp Test module by running the command:

    $ php composer.phar update

Post installation

  1. Enabling it in your TestConfig.php.dist file.

    return array(
        'modules' => array(
            // ...
            'BoilerAppTest',
        ),
        // ...
    );
  2. Create the Bootstrap.php file

    namespace MyModuleTest;
    error_reporting(E_ALL | E_STRICT);
    chdir(dirname(__DIR__));
    if(is_readable($sBoilerAppTestBootstrapPath = __DIR__.'/../vendor/zf2-boiler-app/app-test/src/BoilerAppTest/AbstractBootstrap.php'))include $sBoilerAppTestBootstrapPath;
    if(!class_exists('BoilerAppTest\AbstractBootstrap'))throw new \RuntimeException('Unable to load BoilerAppTest Bootstrap. Install required libraries through `composer`');
    class Bootstrap extends \BoilerAppTest\AbstractBootstrap{}
    Bootstrap::init();    

Features

####Bootstraping

  • Application and test configuration autoloading
  • Service manager accessor

####Doctrine

  • Database auto creator
  • Fixture autoloading