public
Description: PHP5 Unit Testing Framework
Homepage: http://www.snaptest.net
Clone URL: git://github.com/Jakobo/snaptest.git
Jakobo (author)
Sun Jul 19 22:38:45 -0700 2009
commit  7107b755e4b202e64831680cbfb5ba74c499c7ca
tree    56075300c6d196b4edf6f6f809e13c2cc9e40223
parent  c1353f7a9ae1adc9fc3cd15b6640868a3b76e2e6
README.markdown

README - SnapTest

Core Branch: http://github.com/Jakobo/snaptest/tree/master

Issues: http://github.com/Jakobo/snaptest/issues

Introduction

SnapTest is a powerful unit testing framework for PHP 5+, leveraging PHP's unique runtime language to simplify the unit test process without sacrificing the agility tests provide.

SnapTest is a free software project licensed under the Mozilla Public License.

NOTE Starting with SnapTest 1.2.0, SnapTest will be licensed under the BSD License.

Getting Started

Place Snap wherever you want, and run a self test:

  1. if you have php in an obvious location (path, /usr/bin, /usr/local/bin, /opt/local/bin), run the command ./snaptest.sh ./ from inside the snaptest directory.
  2. if php is not in an obvious location, you can run ./snaptest.sh ./ --php where indicates the location of your php binary.
  3. if shell scripting for whatever reason isn't working, you can also use the PHP binary directly by calling snaptest.php --path= ./ where is the location of your php binary.

When ran, you should see output like the following:

User@Host ~/snaptest> ./snaptest.sh ./
..............................................................................
.................


Total Cases: 37 Total Tests: 95 Total Pass: 95 Total Defects: 0 Total Failures: 0

If you don't get any failures (marked with an F followed by information about the error, you're ready to go!

From here, check out http://wiki.github.com/Jakobo/snaptest/base-unit-test-class Step 2 to start writing your own tests.

License

  • SnapTest < 1.2.0 is licensed under the Mozilla Public license (MPL)

  • SnapTest >= 1.2.0 is licensed under the new BSD License (please see LICENSE for full terms)