2017 © Pedro Peláez
 

library naith

A simple php test runner, without the bloat of other frameworks.

image

dracoblue/naith

A simple php test runner, without the bloat of other frameworks.

  • Monday, June 10, 2013
  • by DracoBlue
  • Repository
  • 1 Watchers
  • 3 Stars
  • 13,486 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 2 Versions
  • 4 % Grown

The README.md

naith

  • Version: 1.1.1
  • Date: 2012/09/21
  • Build Status: Build Status, 100% Code Coverage

Naith is a small (~100 loc) php test runner and report generator (with code coverage) for the command line., (*1)

Usage

Executing /path/to/naith_folder/naith run in a directory, will execute all tests within tests/ folder and requires the file _before_test.php (if it's available)., (*2)

If you want to to run your tests as soon as a file changes, just type /path/to/naith_folder/naith run-constant., (*3)

Writing a test

Just create a folder tests and create a file: my_test.php with the contents:, (*4)

<?php
assert(2 == 2);
assert(3 == 2 + 1);

Now you can run your tests with:, (*5)

$ naith run

Result is:, (*6)

 Running Tests 
===============

  [OK] my_test.php

 Code Coverage (for each File)
===============================


Everything is tested. Awesome!

That's it., (*7)

Changelog

  • 1.1.1 (2012/09/21)
    • ignore vendor folder
  • 1.1.0 (2012/04/08)
    • junit.xml generation added
  • 1.0.0 (2012/03/25)
    • initial release

Todo

  • Cleanup the test code

License

This work is copyright by DracoBlue (http://dracoblue.net) and licensed under the terms of MIT License., (*8)

The Versions

10/06 2013

dev-master

9999999-dev

A simple php test runner, without the bloat of other frameworks.

  Sources   Download

MIT

The Requires

  • php >=5.2.0

 

by Avatar DracoBlue

testing

10/06 2013

1.1.1

1.1.1.0

A simple php test runner, without the bloat of other frameworks.

  Sources   Download

MIT

The Requires

  • php >=5.2.0

 

by Avatar DracoBlue

testing