/** * @expectedException \Exception */ public function testMisformatedJSON() { $request = $this->getMockBuilder('\\Kanedo\\Request')->disableOriginalConstructor()->getMock(); $testee = new Bookmark($request); $json = "{this is wroooong: lols'}"; $testee->setUp($json); }