pickles/tests/classes/API/AYAHTest.php
Joshua Sherman dd2e6994fa New test classes
Forgot to commit them it seems.
2014-01-03 19:08:53 -05:00

24 lines
428 B
PHP

<?php
class API_AYAHTest extends PHPUnit_Framework_TestCase
{
/**
* @expectedException Exception
* @expectedExceptionMessage Missing API configuration
*/
public function testGetHTMLMissingConfig()
{
API_AYAH::getHTML();
}
/**
* @expectedException Exception
* @expectedExceptionMessage Missing API configuration
*/
public function testIsHumanMissingConfig()
{
API_AYAH::isHuman();
}
}
?>