Skip to content

Commit

Permalink
fix unit test names
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas committed Jun 3, 2016
1 parent 7f480af commit 98447aa
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tests/TestCase/ORM/RulesCheckerIntegrationTest.php
Expand Up @@ -832,7 +832,7 @@ public function testExistsInErrorWithArrayField()
*
* @return
*/
public function testExistsInAllowSqlNullsWithParentIdNullA()
public function testExistsInAllowPartialNullsWithAuthorIdNullA()
{
$entity = new Entity([
'id' => 10,
Expand All @@ -855,7 +855,7 @@ public function testExistsInAllowSqlNullsWithParentIdNullA()
*
* @return
*/
public function testExistsInAllowSqlNullsWithParentIdNullB()
public function testExistsInAllowPartialNullsWithAuthorIdNullB()
{
$entity = new Entity([
'id' => 10,
Expand All @@ -878,7 +878,7 @@ public function testExistsInAllowSqlNullsWithParentIdNullB()
*
* @return
*/
public function testExistsInAllowSqlNullsWithParentIdNullC()
public function testExistsInAllowPartialNullsWithAuthorIdNullC()
{
$entity = new Entity([
'id' => 10,
Expand All @@ -899,7 +899,7 @@ public function testExistsInAllowSqlNullsWithParentIdNullC()
*
* @return
*/
public function testExistsInAllowSqlNullsWithParentIdNullD()
public function testExistsInAllowPartialNullsWithAuthorIdNullD()
{
$entity = new Entity([
'id' => 10,
Expand All @@ -924,7 +924,7 @@ public function testExistsInAllowSqlNullsWithParentIdNullD()
*
* @return
*/
public function testExistsInAllowSqlNullsWithParentIdNullE()
public function testExistsInAllowPartialNullsWithAuthorIdNullE()
{
$entity = new Entity([
'id' => 10,
Expand All @@ -948,7 +948,7 @@ public function testExistsInAllowSqlNullsWithParentIdNullE()
*
* @return
*/
public function testExistsInAllowSqlNullsWithParentId1A()
public function testExistsInAllowPartialNullsWithAuthorId1A()
{
$entity = new Entity([
'id' => 10,
Expand All @@ -969,7 +969,7 @@ public function testExistsInAllowSqlNullsWithParentId1A()
*
* @return
*/
public function testExistsInAllowSqlNullsWithParentIdB()
public function testExistsInAllowPartialNullsWithAuthorIdB()
{
$entity = new Entity([
'id' => 10,
Expand All @@ -990,7 +990,7 @@ public function testExistsInAllowSqlNullsWithParentIdB()
*
* @return
*/
public function testExistsInAllowSqlNullsWithParentId1C()
public function testExistsInAllowPartialNullsWithAuthorId1C()
{
$entity = new Entity([
'id' => 10,
Expand All @@ -1011,7 +1011,7 @@ public function testExistsInAllowSqlNullsWithParentId1C()
*
* @return
*/
public function testExistsInAllowSqlNullsWithParentId1E()
public function testExistsInAllowPartialNullsWithAuthorId1E()
{
$entity = new Entity([
'id' => 10,
Expand All @@ -1034,7 +1034,7 @@ public function testExistsInAllowSqlNullsWithParentId1E()
*
* @return
*/
public function testExistsInAllowSqlNullsWithParentId1G()
public function testExistsInAllowPartialNullsWithAuthorId1G()
{
$entity = new Entity([
'id' => 10,
Expand Down

0 comments on commit 98447aa

Please sign in to comment.