2017 © Pedro Peláez
 

library rox-client-phpunit

PHPUnit client for submitting test results to ROX Center.

image

lotaris/rox-client-phpunit

PHPUnit client for submitting test results to ROX Center.

  • Tuesday, August 5, 2014
  • by AlphaHydrae
  • Repository
  • 4 Watchers
  • 0 Stars
  • 29 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

PHPUnit ROX Client

PHPUnit listener to send results to ROX Center., (*1)

PHP version, (*2)

Installation

Add the dependency to your composer.json file:, (*3)

{
  "name": "My Project",
  "require-dev": {
    "lotaris/rox-client-phpunit": ">= 0.1.0"
  }
}

Update your composer.lock file:, (*4)

php composer.phar update lotaris/rox-client-phpunit

Requirements

  • PHP 5.3 or higher

Usage

To track a test, you must assign it a ROX test key generated from your ROX Center server., (*5)

Test keys are assigned to a test using the @RoxableTest annotation:, (*6)

use Lotaris\RoxClientPHPUnit\RoxableTest;

/**
 * @RoxableTest(key="ed0f4c560c33")
 */
public function testTheTruth() {
  $this->assertTrue(true);
}

Contributing

  • Fork
  • Create a topic branch - git checkout -b feature
  • Push to your branch - git push origin feature
  • Create a pull request from your branch

Please add a changelog entry with your name for new features and bug fixes., (*7)

License

rox-client-phpunit is licensed under the MIT License. See LICENSE.txt for the full text., (*8)

The Versions

05/08 2014