--- 
canonical: 'https://mwop.net/blog/64-PHP-Unit-Tests-and-the-winner-is-phpt.html'
title: 'PHP Unit Tests: and the winner is: phpt'
author: "[Matthew Weier O'Phinney](https://mwop.net)"
created: '2005-04-20T15:49:11-05:00'
updated: '2005-04-20T17:34:21-05:00'
tags:
  - php

---
I've been tinkering with [Unit Testing](http://www.wikipedia.org/wiki/Unit_testing)
for around a year now, and have tried using [PHP
Unit](http://pear.php.net/package/PHPUnit) as well as
[Simple Test](http://www.lastcraft.com/simple_test.php). It was while following
the Simple Test tutorial that I finally grokked the idea of unit testing, and so
that has been my favored class for testing.

However, I find writing the tests tedious. In Simple Test, as in PHP Unit, you
need to create a class that sets up the testing harness, and then you create a
method for each test you wish to run, and so on… I found it incredibly time
consuming. Additionally, I found the test harness often felt like a foreign way
of testing my code; I was setting up a structure I would never use my code in,
typically. All in all, I only test when I have extra time (which is rare) or
when I'm really having trouble nailing down bugs (and the unit tests often don't
help me find them).

Recently, I've been hearing some buzz over on the [PEAR](http://pear.php.net)
lists and the blogs of some of its developers about 'phpt' tests. From what I
hear, phpt tests sound very similar to how one tests in perl (though I've never
written perl tests, I've at least glanced through them). However, until
recently, I haven't seen any documentation on them, and installing PEAR packages
via pear doesn't install tests.

We got a copy of [PHP5 Power Programming](http://php5powerprogramming.com/) a
few weeks ago, and in the section on preparing a PEAR package was a brief
section on phpt tests. The section was small, and when I looked at it, my
immediate thought was, "it can't be *that* simple, can it?"

So, I decided to try it out with [Cgiapp](http://cgiapp.sourceforge.net/). A few
minutes later, I had some working tests for my static methods. "Hmmm," I
thought, "That was easy. Let's try some more."

Turns out they're kind of addictive to geeks like me. In a matter of a few
hours, I'd knocked out tests for over half the functionality, and disccovered,
to my chagrine and joy, a number of bugs and bad coding practices… which I
promptly corrected so I could get that magical 'PASS' from the test harness.

In the process of writing the tests, my understanding of the tool evolved quite
a bit, and by the end, I had the knack for it down. I'll blog later about some
of the ways I made them easier to use for myself — and how I made them more
useful for debugging purposes.


