2017 © Pedro Peláez
 

library zf-atoum

Zend Framework 2 module for atoum unit testing framework

image

bfolliot/zf-atoum

Zend Framework 2 module for atoum unit testing framework

  • Tuesday, March 25, 2014
  • by bfolliot
  • Repository
  • 1 Watchers
  • 0 Stars
  • 14 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

ZfAtoum

Zend Framework 2 module for Atoum unit testing framework, (*1)

For now, we can just run tests for all modules in ./module, (*2)

Installation

1 - With composer

{
    "require": {
        "bfolliot/zf-atoum": "dev-master"
    }
}

In most of the cases you don't need ZfAtoum in your production environment., (*3)

{
    "require-dev": {
        "bfolliot/zf-atoum": "dev-master"
    }
}

2 - Command

ZfAtoum is provided with a Zend Framework console route., (*4)

2-a Registering in your application

Enabling it in your application.config.phpfile., (*5)

<?php
return array(
    'modules' => array(
        // ...
        'ZfAtoum',
    ),
    // ...
);

2-c Command-line usage

Then you can use:, (*6)

$ php ./public/index.php atoum # launch tests for your module (in ./module)

The Versions

25/03 2014

dev-master

9999999-dev

Zend Framework 2 module for atoum unit testing framework

  Sources   Download

MIT

The Requires

 

by Bryan Folliot