Fix unit test names, property and function visibility

This commit is contained in:
Romain Neutron
2013-12-06 10:26:54 +01:00
parent 804caccc73
commit a3b1ae7163
313 changed files with 510 additions and 534 deletions

View File

@@ -1,6 +1,6 @@
<?php
class API_OAuth2_TokenTest extends PhraseanetPHPUnitAbstract
class API_OAuth2_TokenTest extends \PhraseanetTestCase
{
/**
@@ -30,7 +30,7 @@ class API_OAuth2_TokenTest extends PhraseanetPHPUnitAbstract
parent::tearDown();
}
protected function assertmd5($md5)
private function assertmd5($md5)
{
$this->assertTrue((count(preg_match('/[a-z0-9]{32}/', $md5)) === 1));
}