Skip to content

Commit

Permalink
1.4.0 - remove WebTest (test runner)
Browse files Browse the repository at this point in the history
  • Loading branch information
robocoder committed May 8, 2014
1 parent be78bfa commit 3cf1302
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 559 deletions.
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -7,7 +7,6 @@ Distinguishing features:
* In the *master* branch, class names and file organization follow PSR-0 conventions for php 5.3+ namespaces.
* Coding style follows PSR-1, PSR-2, and Symfony2 conventions.
* Auto-generate API documentation via [phpDocumentor 2.x](http://phpdoc.org/).
* Includes a basic web test runner.

[![Build Status](https://travis-ci.org/instaclick/php-webdriver.png)](https://travis-ci.org/instaclick/php-webdriver)
[![Coverage Status](https://coveralls.io/repos/instaclick/php-webdriver/badge.png)](https://coveralls.io/r/instaclick/php-webdriver)
Expand Down
32 changes: 0 additions & 32 deletions bin/webunit

This file was deleted.

7 changes: 2 additions & 5 deletions composer.json
Expand Up @@ -36,10 +36,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
"dev-master": "1.4.x-dev"
}
},
"bin": [
"bin/webunit"
]
}
}
2 changes: 0 additions & 2 deletions lib/WebDriver/Exception.php
Expand Up @@ -86,7 +86,6 @@ abstract class Exception extends \Exception
const UNEXPECTED_PARAMETERS = -5;
const INVALID_REQUEST = -6;
const UNKNOWN_LOCATOR_STRATEGY = -7;
const WEBTEST_ASSERTION = -8;

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

/**
Expand Down
33 changes: 0 additions & 33 deletions lib/WebDriver/Exception/WebTestAssertion.php

This file was deleted.

110 changes: 0 additions & 110 deletions lib/WebDriver/WebTest/Script.php

This file was deleted.

0 comments on commit 3cf1302

Please sign in to comment.