From aeecbd8afe75b73df1e1b3b294998b43436cbe75 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 28 May 2019 10:03:05 -0400 Subject: [PATCH] Add missing comments. --- .../src/VuFindTest/Mink/CallnumberBrowseTest.php | 5 +++++ .../src/VuFindTest/Mink/IlsActionsTest.php | 13 +++++++++++++ 2 files changed, 18 insertions(+) diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CallnumberBrowseTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CallnumberBrowseTest.php index 8cf96006b98..e5ff9961b5a 100644 --- a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CallnumberBrowseTest.php +++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CallnumberBrowseTest.php @@ -38,6 +38,11 @@ namespace VuFindTest\Mink; */ class CallnumberBrowseTest extends \VuFindTest\Unit\MinkTestCase { + /** + * Record ID to use in testing. + * + * @var string + */ protected $id = 'testdeweybrowse'; /** diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/IlsActionsTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/IlsActionsTest.php index 7cbf2173ea8..3c57474bec3 100644 --- a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/IlsActionsTest.php +++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/IlsActionsTest.php @@ -179,6 +179,14 @@ class IlsActionsTest extends \VuFindTest\Unit\MinkTestCase ); } + /** + * Support method to place a storage retrieval request and end up on the SRR + * screen. + * + * @param Element $page Page element. + * + * @return void + */ protected function placeStorageRetrievalRequestAndGoToSRRScreen($page) { // Open the "place hold" dialog @@ -204,6 +212,11 @@ class IlsActionsTest extends \VuFindTest\Unit\MinkTestCase ); } + /** + * Test placing a hold + * + * @return void + */ public function testPlaceHold() { $this->changeConfigs( -- GitLab