コード例 #1
0
ファイル: BotTest.php プロジェクト: dave-ac/vSimpleMVC
 protected function setUp()
 {
     $this->bot = PinterestBot::create();
     $this->reflection = new ReflectionClass($this->bot);
     $this->setReflectedObject($this->bot);
 }
コード例 #2
0
 /** @test */
 public function it_should_return_an_instance_of_bot()
 {
     $this->assertInstanceOf(Bot::class, PinterestBot::create());
 }