example.test.php 209 Bytes
Newer Older
Taylor Otwell committed
1 2 3 4 5 6 7 8 9 10 11
<?php

class TestExample extends PHPUnit_Framework_TestCase {

	/**
	 * Test that a given condition is met.
	 *
	 * @return void
	 */
	public function testSomethingIsTrue()
	{
Taylor Otwell committed
12
		$this->assertTrue(true);	
Taylor Otwell committed
13 14 15
	}

}