Skip to content

Commit

Permalink
Merge bc81a20 into 75fc891
Browse files Browse the repository at this point in the history
  • Loading branch information
kilip committed Jun 10, 2019
2 parents 75fc891 + bc81a20 commit ea55abd
Show file tree
Hide file tree
Showing 75 changed files with 143 additions and 90 deletions.
13 changes: 13 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.php_cs.dist
.travis.yml
*.dist
composer.lock
RoboFile.php
bin
build
features
spec
tests
2 changes: 1 addition & 1 deletion .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

$header = <<<'HEADER'
This file is part of the doyo/behat-coverage-extension project.
This file is part of the doyo/behat-code-coverage project.
(c) Anthonius Munthi <me@itstoni.com>
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Behat Coverage Extension [![License](https://img.shields.io/packagist/l/doyo/behat-coverage-extension.svg?style=flat-square)](#License)
Behat Coverage Extension [![License](https://img.shields.io/packagist/l/doyo/behat-code-coverage.svg?style=flat-square)](#License)
---
Provide code coverage extension during behat tests

Expand All @@ -13,14 +13,14 @@ Provide code coverage extension during behat tests
* Behat: >=3.0
* PHP Code Coverage: >=5.3

[travis]: https://travis-ci.com/doyolabs/behat-coverage-extension
[travis-master]: https://img.shields.io/travis/com/doyolabs/behat-coverage-extension/master.svg?style=flat-square
[travis-develop]: https://img.shields.io/travis/com/doyolabs/behat-coverage-extension/develop.svg?style=flat-square
[cover-master]: https://coveralls.io/github/doyolabs/behat-coverage-extension?branch=master
[cover-develop]: https://coveralls.io/github/doyolabs/behat-coverage-extension?branch=develop
[cover-stat-develop]: https://img.shields.io/coveralls/github/doyolabs/behat-coverage-extension/develop.svg?style=flat-square
[cover-stat-master]: https://img.shields.io/coveralls/github/doyolabs/behat-coverage-extension/master.svg?style=flat-square
[score-master]: https://scrutinizer-ci.com/g/doyolabs/behat-coverage-extension/?branch=master
[score-develop]: https://scrutinizer-ci.com/g/doyolabs/behat-coverage-extension/?branch=develop
[score-stat-develop]: https://img.shields.io/scrutinizer/quality/g/doyolabs/behat-coverage-extension/develop.svg?style=flat-square
[score-stat-master]: https://img.shields.io/scrutinizer/quality/g/doyolabs/behat-coverage-extension/master.svg?style=flat-square
[travis]: https://travis-ci.com/doyolabs/behat-code-coverage
[travis-master]: https://img.shields.io/travis/com/doyolabs/behat-code-coverage/master.svg?style=flat-square
[travis-develop]: https://img.shields.io/travis/com/doyolabs/behat-code-coverage/develop.svg?style=flat-square
[cover-master]: https://coveralls.io/github/doyolabs/behat-code-coverage?branch=master
[cover-develop]: https://coveralls.io/github/doyolabs/behat-code-coverage?branch=develop
[cover-stat-develop]: https://img.shields.io/coveralls/github/doyolabs/behat-code-coverage/develop.svg?style=flat-square
[cover-stat-master]: https://img.shields.io/coveralls/github/doyolabs/behat-code-coverage/master.svg?style=flat-square
[score-master]: https://scrutinizer-ci.com/g/doyolabs/behat-code-coverage/?branch=master
[score-develop]: https://scrutinizer-ci.com/g/doyolabs/behat-code-coverage/?branch=develop
[score-stat-develop]: https://img.shields.io/scrutinizer/quality/g/doyolabs/behat-code-coverage/develop.svg?style=flat-square
[score-stat-master]: https://img.shields.io/scrutinizer/quality/g/doyolabs/behat-code-coverage/master.svg?style=flat-square
11 changes: 1 addition & 10 deletions RoboFile.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand All @@ -11,15 +11,6 @@

declare(strict_types=1);

/*
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

use Lurker\Event\FilesystemEvent;
use Robo\Tasks;

Expand Down
23 changes: 23 additions & 0 deletions bin/split.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env bash

set -e
set -x

CURRENT_BRANCH="develop"

function split()
{
SHA1=`./bin/splitsh --prefix=$1`
git push $2 "$SHA1:refs/heads/$CURRENT_BRANCH" -f
}

function remote()
{
git remote add $1 $2 || true
}

git pull origin $CURRENT_BRANCH

remote code-coverage-bridge git@github.com:doyolabs/code-coverage-bridge.git

split 'src/Bridge/CodeCoverage' code-coverage-bridge
Binary file added bin/splitsh
Binary file not shown.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "doyo/behat-coverage-extension",
"name": "doyo/behat-code-coverage",
"description": "Behat Code Coverage Extension",
"type": "library",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion features/contexts/FeatureContext.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion features/contexts/RemoteContext.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Bridge/CodeCoverage/ProcessorSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Bridge/CodeCoverage/Session/RemoteSessionSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Bridge/CodeCoverage/Session/SessionSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Bridge/CodeCoverage/Session/TestSession.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Bridge/CodeCoverage/TestCaseSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Bridge/ReportSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Bridge/TestCachedCoverage.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Bridge/TestClass.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Bridge/TestReportProcessor.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Console/IOSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Controller/Cli/CoverageControllerSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Event/CoverageEventSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Event/ReportEventSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/ExtensionSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Listener/BehatEventListenerSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Listener/LocalCoverageListenerSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Listener/RemoteCoverageListenerSpec.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/Listener/TestBehatEventListener.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion spec/ResponseTrait.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion src/Bridge/CodeCoverage/Controller/RemoteController.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion src/Bridge/CodeCoverage/Driver/Compat/BaseDummy5.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion src/Bridge/CodeCoverage/Driver/Compat/BaseDummy6.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion src/Bridge/CodeCoverage/Driver/Dummy.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion src/Bridge/CodeCoverage/Exception/SessionException.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion src/Bridge/CodeCoverage/Processor.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion src/Bridge/CodeCoverage/ProcessorInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
3 changes: 3 additions & 0 deletions src/Bridge/CodeCoverage/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
PHP Code Coverage Bridge
----
This packages add functionality to customize code coverage collecting
2 changes: 1 addition & 1 deletion src/Bridge/CodeCoverage/Session/LocalSession.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down
2 changes: 1 addition & 1 deletion src/Bridge/CodeCoverage/Session/RemoteSession.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of the doyo/behat-coverage-extension project.
* This file is part of the doyo/behat-code-coverage project.
*
* (c) Anthonius Munthi <me@itstoni.com>
*
Expand Down

0 comments on commit ea55abd

Please sign in to comment.