Browse Source
Use clearer name setUpScenario
Signed-off-by: Phil Davis <phil.davis@inf.org>
pull/3566/head
Phil Davis
10 years ago
No known key found for this signature in database
GPG Key ID: 340A5689A513CA23
5 changed files with
5 additions and
5 deletions
-
build/integration/features/bootstrap/Auth.php
-
build/integration/features/bootstrap/CalDavContext.php
-
build/integration/features/bootstrap/CardDavContext.php
-
build/integration/features/bootstrap/ChecksumsContext.php
-
build/integration/features/bootstrap/TagsContext.php
|
|
|
@ -31,7 +31,7 @@ trait Auth { |
|
|
|
private $clientToken; |
|
|
|
|
|
|
|
/** @BeforeScenario */ |
|
|
|
public function tearUpScenario() { |
|
|
|
public function setUpScenario() { |
|
|
|
$this->client = new Client(); |
|
|
|
$this->responseXml = ''; |
|
|
|
} |
|
|
|
|
|
|
|
@ -50,7 +50,7 @@ class CalDavContext implements \Behat\Behat\Context\Context { |
|
|
|
} |
|
|
|
|
|
|
|
/** @BeforeScenario */ |
|
|
|
public function tearUpScenario() { |
|
|
|
public function setUpScenario() { |
|
|
|
$this->client = new Client(); |
|
|
|
$this->responseXml = ''; |
|
|
|
} |
|
|
|
|
|
|
|
@ -50,7 +50,7 @@ class CardDavContext implements \Behat\Behat\Context\Context { |
|
|
|
} |
|
|
|
|
|
|
|
/** @BeforeScenario */ |
|
|
|
public function tearUpScenario() { |
|
|
|
public function setUpScenario() { |
|
|
|
$this->client = new Client(); |
|
|
|
$this->responseXml = ''; |
|
|
|
} |
|
|
|
|
|
|
|
@ -48,7 +48,7 @@ class ChecksumsContext implements \Behat\Behat\Context\Context { |
|
|
|
} |
|
|
|
|
|
|
|
/** @BeforeScenario */ |
|
|
|
public function tearUpScenario() { |
|
|
|
public function setUpScenario() { |
|
|
|
$this->client = new Client(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -50,7 +50,7 @@ class TagsContext implements \Behat\Behat\Context\Context { |
|
|
|
} |
|
|
|
|
|
|
|
/** @BeforeScenario */ |
|
|
|
public function tearUpScenario() { |
|
|
|
public function setUpScenario() { |
|
|
|
$this->client = new Client(); |
|
|
|
} |
|
|
|
|
|
|
|
|