/**
  * Set up the tests object
  */
 public function setUp()
 {
     parent::setUp();
     $token = new Token();
     foreach ($this->tokenConsts as $scope) {
         $this->tokensCollection[$scope] = Collection::make();
         for ($i = 0; $i <= 4; $i++) {
             $item = $token->newInstance(['token_name' => 'val_' . ($i + 1), 'token_value' => "val-{$scope}-" . ($i + 1), 'token_scope' => $scope]);
             $this->tokensCollection[$scope]->add($item);
         }
     }
 }