Skip to content

Commit 3cf1302

Browse files
committed
1.4.0 - remove WebTest (test runner)
1 parent be78bfa commit 3cf1302

File tree

7 files changed

+2
-559
lines changed

7 files changed

+2
-559
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ Distinguishing features:
77
* In the *master* branch, class names and file organization follow PSR-0 conventions for php 5.3+ namespaces.
88
* Coding style follows PSR-1, PSR-2, and Symfony2 conventions.
99
* Auto-generate API documentation via [phpDocumentor 2.x](http://phpdoc.org/).
10-
* Includes a basic web test runner.
1110

1211
[![Build Status](https://travis-ci.org/instaclick/php-webdriver.png)](https://travis-ci.org/instaclick/php-webdriver)
1312
[![Coverage Status](https://coveralls.io/repos/instaclick/php-webdriver/badge.png)](https://coveralls.io/r/instaclick/php-webdriver)

bin/webunit

Lines changed: 0 additions & 32 deletions
This file was deleted.

composer.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,7 @@
3636
},
3737
"extra": {
3838
"branch-alias": {
39-
"dev-master": "1.3.x-dev"
39+
"dev-master": "1.4.x-dev"
4040
}
41-
},
42-
"bin": [
43-
"bin/webunit"
44-
]
41+
}
4542
}

lib/WebDriver/Exception.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ abstract class Exception extends \Exception
8686
const UNEXPECTED_PARAMETERS = -5;
8787
const INVALID_REQUEST = -6;
8888
const UNKNOWN_LOCATOR_STRATEGY = -7;
89-
const WEBTEST_ASSERTION = -8;
9089

9190
private static $errs = array(
9291
// self::SUCCESS => array('Success', 'This should never be thrown!'),
@@ -123,7 +122,6 @@ abstract class Exception extends \Exception
123122
self::UNEXPECTED_PARAMETERS => array('UnexpectedParameters', 'This command does not expect this number of parameters.'),
124123
self::INVALID_REQUEST => array('InvalidRequest', 'This command does not support this HTTP request method.'),
125124
self::UNKNOWN_LOCATOR_STRATEGY => array('UnknownLocatorStrategy', 'This locator strategy is not supported.'),
126-
self::WEBTEST_ASSERTION => array('WebTestAssertion', 'WebTest assertion failed.'),
127125
);
128126

129127
/**

lib/WebDriver/Exception/WebTestAssertion.php

Lines changed: 0 additions & 33 deletions
This file was deleted.

lib/WebDriver/WebTest/Script.php

Lines changed: 0 additions & 110 deletions
This file was deleted.

0 commit comments

Comments
 (0)