Skip to content

Commit 1007458

Browse files
committed
Move tests to the Tests namespace.
1 parent 87084fa commit 1007458

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
},
4949
"autoload-dev": {
5050
"psr-4": {
51-
"PHPSemVerCheckerGit\\Test\\": "tests/PHPSemVerCheckerGit"
51+
"PHPSemVerCheckerGit\\Tests\\": "tests/PHPSemVerCheckerGit"
5252
}
5353
},
5454
"config": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/Console/Command/SuggestCommandTest.php renamed to tests/Console/Command/SuggestCommandTest.php

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

3-
namespace PHPSemVerCheckerGit\Test;
3+
namespace PHPSemVerCheckerGit\Tests;
44

55
use PHPSemVerChecker\SemanticVersioning\Level;
66
use PHPSemVerCheckerGit\Console\Command\SuggestCommand;
@@ -80,4 +80,4 @@ public function testGetNextTag($level, version $version, $expected)
8080
$this->assertInstanceOf('vierbergenlars\SemVer\version', $result);
8181
$this->assertEquals($expected, $result->getVersion());
8282
}
83-
}
83+
}

0 commit comments

Comments
 (0)