/**
  * @test
  */
 public function callPropertyInModelIfNotExistsInPresenterWithConversionToSnakeCase()
 {
     $expected = 'testing';
     $this->assertEquals($expected, $this->model->present()->property_test);
     $this->assertEquals($expected, $this->model->present()->propertyTest);
 }