/**
  * Test the method to get the by-pass proctoring status 
  *
  * @dataProvider byPassProctorProvider
  */
 public function testByPassProctor($property, $result)
 {
     $eligibilityProphet = $this->prophesize(core_kernel_classes_Resource::class);
     $eligibilityProphet->getOnePropertyValue(new core_kernel_classes_Property(EligibilityService::PROPERTY_BYPASSPROCTOR_URI))->willReturn($property);
     $this->assertEquals($result, $this->eligilityService->canByPassProctor($eligibilityProphet->reveal()));
 }