Skip to content

Commit a6e9b06

Browse files
authored
Renamed "functional" tests to "integration" tests (#564)
1 parent 387d21e commit a6e9b06

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<groups>
2121
<exclude>
22-
<group>functional</group>
22+
<group>integration</group>
2323
</exclude>
2424
</groups>
2525

test/Github/Tests/Functional/CommitTest.php renamed to test/Github/Tests/Integration/CommitTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Github\Tests\Functional;
3+
namespace Github\Tests\Integration;
44

55
/**
6-
* @group functional
6+
* @group integration
77
*/
88
class CommitTest extends TestCase
99
{

test/Github/Tests/Functional/GistTest.php renamed to test/Github/Tests/Integration/GistTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Github\Tests\Functional;
3+
namespace Github\Tests\Integration;
44

55
/**
6-
* @group functional
6+
* @group integration
77
*/
88
class GistTest extends TestCase
99
{

test/Github/Tests/Functional/IssueCommentTest.php renamed to test/Github/Tests/Integration/IssueCommentTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Github\Tests\Functional;
3+
namespace Github\Tests\Integration;
44

55
/**
6-
* @group functional
6+
* @group integration
77
*/
88
class IssueCommentTest extends TestCase
99
{

test/Github/Tests/Functional/MarkdownTest.php renamed to test/Github/Tests/Integration/MarkdownTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
namespace Github\Tests\Functional;
3+
namespace Github\Tests\Integration;
44

55
use Github\Api\Markdown;
66

77
/**
8-
* @group functional
8+
* @group integration
99
*/
1010
class MarkdownTest extends TestCase
1111
{

test/Github/Tests/Functional/RateLimitTest.php renamed to test/Github/Tests/Integration/RateLimitTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Github\Tests\Functional;
3+
namespace Github\Tests\Integration;
44

55
/**
6-
* @group functional
6+
* @group integration
77
*/
88
class RateLimitTest extends TestCase
99
{

test/Github/Tests/Functional/RepoCommentTest.php renamed to test/Github/Tests/Integration/RepoCommentTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Github\Tests\Functional;
3+
namespace Github\Tests\Integration;
44

55
/**
6-
* @group functional
6+
* @group integration
77
*/
88
class RepoCommentTest extends TestCase
99
{

test/Github/Tests/Functional/RepoTest.php renamed to test/Github/Tests/Integration/RepoTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Github\Tests\Functional;
3+
namespace Github\Tests\Integration;
44

55
/**
6-
* @group functional
6+
* @group integration
77
*/
88
class RepoTest extends TestCase
99
{

test/Github/Tests/Functional/ResultPagerTest.php renamed to test/Github/Tests/Integration/ResultPagerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
namespace Github\Tests\Functional;
3+
namespace Github\Tests\Integration;
44

55
use Github\ResultPager;
66

77
/**
8-
* @group functional
8+
* @group integration
99
*/
1010
class ResultPagerTest extends TestCase
1111
{

test/Github/Tests/Functional/TestCase.php renamed to test/Github/Tests/Integration/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

3-
namespace Github\Tests\Functional;
3+
namespace Github\Tests\Integration;
44

55
use Github\Client;
66
use Github\Exception\ApiLimitExceedException;
77
use Github\Exception\RuntimeException;
88

99
/**
10-
* @group functional
10+
* @group integration
1111
*/
1212
class TestCase extends \PHPUnit_Framework_TestCase
1313
{

test/Github/Tests/Functional/UserTest.php renamed to test/Github/Tests/Integration/UserTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Github\Tests\Functional;
3+
namespace Github\Tests\Integration;
44

55
/**
6-
* @group functional
6+
* @group integration
77
*/
88
class UserTest extends TestCase
99
{

0 commit comments

Comments
 (0)