/**
  * @expectedException BadMethodCallException
  * @expectedExceptionMessage Invalid method called "ViewModelServiceTest\TestAsset\ViewModelRepo::createBestEverViewModel()", for adding or getting ViewModel(s) only allowed "add<ViewModel>()" or "get<ViewModel>()"
  */
 public function test_Should_Throw_Exception_At_Trying_To_Work_With_Magical_Method_Call_On_Add_Data_To_Repo_Or_By_Get_View_Model_From_Repo()
 {
     $this->repo->createBestEverViewModel();
 }