From 02b9c23c4062884695c7a0b9fd911c5c756927d4 Mon Sep 17 00:00:00 2001 From: Andres Rey Date: Sun, 26 May 2019 11:56:58 +0100 Subject: Implement TestPage and upgrade the test suite --- test/TestPage.php | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 test/TestPage.php (limited to 'test/TestPage.php') diff --git a/test/TestPage.php b/test/TestPage.php new file mode 100644 index 0000000..7859481 --- /dev/null +++ b/test/TestPage.php @@ -0,0 +1,61 @@ +configuration = $configuration; + $this->sourceHTML = $sourceHTML; + $this->expectedHTML = $expectedHTML; + $this->expectedImages = $expectedImages; + $this->expectedMetadata = $expectedMetadata; + } + + /** + * @return array + */ + public function getConfiguration() + { + return $this->configuration; + } + + /** + * @return null + */ + public function getSourceHTML() + { + return $this->sourceHTML; + } + + /** + * @return null + */ + public function getExpectedHTML() + { + return $this->expectedHTML; + } + + /** + * @return mixed + */ + public function getExpectedImages() + { + return $this->expectedImages; + } + + /** + * @return \stdClass + */ + public function getExpectedMetadata() + { + return $this->expectedMetadata; + } +} -- cgit v1.2.3