コード例 #1
0
 public function setUp()
 {
     $this->client = new CurlClient();
     parent::setUp();
 }
コード例 #2
0
 public function setUp()
 {
     parent::setUp();
     $this->list = new ArrayList();
 }
コード例 #3
0
 public function setUp()
 {
     parent::setUp();
     $this->strictTraitImpl = new StrictlyTypedCollectionImpl();
 }
コード例 #4
0
 public function setUp()
 {
     parent::setUp();
     $this->instance = new Phabricator($this->baseUrl, $this->dummyToken);
 }
コード例 #5
0
ファイル: SetTest.php プロジェクト: BuildrPHP/Collection
 public function setUp()
 {
     $this->set = new HashSet();
     parent::setUp();
 }
コード例 #6
0
 public function setUp()
 {
     parent::setUp();
     $content = file_get_contents(self::testFile);
     $this->symfonyParserResult = (new SymfonyYAMLParser())->parse($content);
 }
コード例 #7
0
 public function setUp()
 {
     parent::setUp();
     $this->impl = new ClientAwareTraitImpl();
 }
コード例 #8
0
ファイル: HashMapTest.php プロジェクト: BuildrPHP/Collection
 /**
  * @inheritDoc
  */
 protected function setUp()
 {
     parent::setUp();
     $this->map = new HashMap();
 }