Esempio n. 1
0
 /**
  * test get config handler
  *
  * @return void
  */
 public function testGetConfigHandler()
 {
     $repo = $this->repo;
     $session = $this->session;
     $configHandler = $this->configHandler;
     $member = $this->member;
     $auth = $this->auth;
     $request = $this->request;
     $counter = new Counter($repo, $session, $configHandler, $member, $auth, $request);
     $configHandler = $counter->getConfigHandler();
     $this->assertInstanceOf('Xpressengine\\Counter\\ConfigHandler', $configHandler);
 }