From 38efa97aa596ff7ba9185bdd9fbea7ab32acd236 Mon Sep 17 00:00:00 2001 From: Daniel Calviño Sánchez Date: Mon, 10 Apr 2017 12:26:52 +0200 Subject: Rename methods to something less tied to its implementation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Calviño Sánchez --- build/acceptance/features/core/NextcloudTestServerContext.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/acceptance/features/core/NextcloudTestServerContext.php b/build/acceptance/features/core/NextcloudTestServerContext.php index cdd07dab168..7b494cdd12b 100644 --- a/build/acceptance/features/core/NextcloudTestServerContext.php +++ b/build/acceptance/features/core/NextcloudTestServerContext.php @@ -87,7 +87,7 @@ class NextcloudTestServerContext implements Context { * BeforeScenario hook scope. * @throws \Exception if the Docker container can not be started. */ - public function startNextcloudTestServer(BeforeScenarioScope $scope) { + public function setUpNextcloudTestServer(BeforeScenarioScope $scope) { $this->dockerHelper->createAndStartContainer(); $serverAddress = $this->dockerHelper->getNextcloudTestServerAddress(); @@ -116,7 +116,7 @@ class NextcloudTestServerContext implements Context { * * @throws \Exception if the Docker container can not be removed. */ - public function stopNextcloudTestServer() { + public function cleanUpNextcloudTestServer() { $this->dockerHelper->stopAndRemoveContainer(); $wasContainerRemovedCallback = function() { -- cgit v1.2.3