コード例 #1
0
ファイル: NbpRepositoryTest.php プロジェクト: Raptek/nbp-php
 public function testDefaultCacheInstance()
 {
     $Instance1 = NbpRepository::defaultCacheInstance();
     $this->assertInstanceOf(NbpRepository::class, $Instance1);
     $Instance2 = NbpRepository::defaultCacheInstance();
     $this->assertSame($Instance1, $Instance2);
 }
コード例 #2
0
ファイル: MainFeatureContext.php プロジェクト: Raptek/nbp-php
 /**
  * @Given I have the NbpRepository object for table :table
  */
 public function iHaveTheNbpRepositoryObjectForTable($table)
 {
     $this->_NbpRepo = NbpRepository::defaultCacheInstance();
 }