I am very new to PHPUnit and unit-testing, so I have a questing:
Can I test a function outside a class like:
function odd_or_even( $num ) {
return $num%2; // Returns 0 for odd and 1 for even
}
class test extends PHPUnit_Framework_TestCase {
public function odd_or_even_to_true() {
$this->assetTrue( odd_or_even( 4 ) == true );
}
}
Right now it just returns:
No tests found in class "test".
You need to prefix your function names with ‘test’ in order for them to be recognized as a test.
From the documentation:
There should be no problem calling
odd_or_even().For example: