public function testStop() { $driver = $this->buildMock(); $driver->expects($this->once())->method('measureTime')->with("foo"); $measurements = new Time("foo", $driver); $measurements->stop(); }
function test_collection($collection_url) { $collection = new Collection($collection_url); // 获取收藏夹名称 $title = $collection->get_title(); var_dump($title); // 获取收藏夹简介 $description = $collection->get_description(); var_dump($description); // 获取收藏夹建立者 $author = $collection->get_author(); var_dump($author); $answer_list = $collection->get_answers(); foreach ($answer_list as $answer) { var_dump($answer); } } $time = new Time(); $time->star(); $user_url = 'https://www.zhihu.com/people/ahonn'; $question_url = 'https://www.zhihu.com/question/38813693'; $answer_url = 'https://www.zhihu.com/question/19550393/answer/12202130'; $topics_url = 'https://www.zhihu.com/topic/19552330'; $collection_url = 'https://www.zhihu.com/collection/19650606'; // test_user($user_url); // test_question($question_url); // test_answer($answer_url); // test_topics($topics_url); // test_collection($collection_url); $time->stop(); echo $time->spent();