diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-04-10 12:26:52 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-04-19 08:26:03 +0200 |
commit | 38efa97aa596ff7ba9185bdd9fbea7ab32acd236 (patch) | |
tree | 67731319d9b3f02293c5e817312abbf209440054 | |
parent | c4613733eb4076f6e641e27e953365feb88e98ee (diff) | |
download | nextcloud-server-38efa97aa596ff7ba9185bdd9fbea7ab32acd236.tar.gz nextcloud-server-38efa97aa596ff7ba9185bdd9fbea7ab32acd236.zip |
Rename methods to something less tied to its implementation
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r-- | build/acceptance/features/core/NextcloudTestServerContext.php | 4 |
1 files 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() { |