Skip to content

Commit

Permalink
fix tests naming
Browse files Browse the repository at this point in the history
  • Loading branch information
killianherbunot committed Jan 9, 2017
1 parent ebbbc9b commit 8cfc4de
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function WithoutApiKeyConfiguration_ThrowException()
/**
* @test
*/
public function EnrollmentServiceReturnEnrollment()
public function CallEnrollmentService_ReturnEnrollmentServiceInstance()
{
$this->configLoader->load('config.yml');
$this->container->compile();
Expand All @@ -80,7 +80,7 @@ public function EnrollmentServiceReturnEnrollment()
/**
* @test
*/
public function EventOccurrenceStaffServiceReturnEventOccurrenceStaff()
public function CallEventOccurrenceStaffService_ReturnEventOccurrenceStaffServiceInstance()
{
$this->configLoader->load('config.yml');
$this->container->compile();
Expand All @@ -91,7 +91,7 @@ public function EventOccurrenceStaffServiceReturnEventOccurrenceStaff()
/**
* @test
*/
public function PackServiceReturnPack()
public function CallPackService_ReturnPackServiceInstance()
{
$this->configLoader->load('config.yml');
$this->container->compile();
Expand All @@ -102,7 +102,7 @@ public function PackServiceReturnPack()
/**
* @test
*/
public function PersonServiceReturnPerson()
public function CallPersonService_ReturnPersonServiceInstance()
{
$this->configLoader->load('config.yml');
$this->container->compile();
Expand All @@ -113,7 +113,7 @@ public function PersonServiceReturnPerson()
/**
* @test
*/
public function PlanServiceReturnPack()
public function CallPlanService_ReturnPackServiceInstance()
{
$this->configLoader->load('config.yml');
$this->container->compile();
Expand All @@ -124,7 +124,7 @@ public function PlanServiceReturnPack()
/**
* @test
*/
public function StaffMemberServiceReturnStaffMember()
public function CallStaffMemberService_ReturnStaffMemberServiceInstance()
{
$this->configLoader->load('config.yml');
$this->container->compile();
Expand All @@ -135,7 +135,7 @@ public function StaffMemberServiceReturnStaffMember()
/**
* @test
*/
public function VisitServiceReturnPack()
public function CallVisitService_ReturnPackServiceInstance()
{
$this->configLoader->load('config.yml');
$this->container->compile();
Expand Down

0 comments on commit 8cfc4de

Please sign in to comment.