Skip to content

Commit

Permalink
Merge pull request #23 from core23/develop
Browse files Browse the repository at this point in the history
[PATCH] Make test classes final
  • Loading branch information
core23 committed Jun 24, 2019
2 parents 69e87eb + f982b87 commit 509ac25
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion tests/Builder/AlbumInfoBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\AlbumInfoBuilder;
use PHPUnit\Framework\TestCase;

class AlbumInfoBuilderTest extends TestCase
final class AlbumInfoBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/AlbumTagsBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\AlbumTagsBuilder;
use PHPUnit\Framework\TestCase;

class AlbumTagsBuilderTest extends TestCase
final class AlbumTagsBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/AlbumTopTagsBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\AlbumTopTagsBuilder;
use PHPUnit\Framework\TestCase;

class AlbumTopTagsBuilderTest extends TestCase
final class AlbumTopTagsBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/ArtistInfoBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\ArtistInfoBuilder;
use PHPUnit\Framework\TestCase;

class ArtistInfoBuilderTest extends TestCase
final class ArtistInfoBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/ArtistTagsBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\ArtistTagsBuilder;
use PHPUnit\Framework\TestCase;

class ArtistTagsBuilderTest extends TestCase
final class ArtistTagsBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/ArtistTopAlbumsBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\ArtistTopAlbumsBuilder;
use PHPUnit\Framework\TestCase;

class ArtistTopAlbumsBuilderTest extends TestCase
final class ArtistTopAlbumsBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/ArtistTopTagsBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\ArtistTopTagsBuilder;
use PHPUnit\Framework\TestCase;

class ArtistTopTagsBuilderTest extends TestCase
final class ArtistTopTagsBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/ArtistTopTracksBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\ArtistTopTracksBuilder;
use PHPUnit\Framework\TestCase;

class ArtistTopTracksBuilderTest extends TestCase
final class ArtistTopTracksBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/ScrobbeBuilderTest.php
Expand Up @@ -14,7 +14,7 @@
use DateTime;
use PHPUnit\Framework\TestCase;

class ScrobbeBuilderTest extends TestCase
final class ScrobbeBuilderTest extends TestCase
{
public function testCreate(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/SimilarArtistBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\SimilarArtistBuilder;
use PHPUnit\Framework\TestCase;

class SimilarArtistBuilderTest extends TestCase
final class SimilarArtistBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/SimilarTrackBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\SimilarTrackBuilder;
use PHPUnit\Framework\TestCase;

class SimilarTrackBuilderTest extends TestCase
final class SimilarTrackBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/TrackBuilderTest.php
Expand Up @@ -13,7 +13,7 @@
use DateTime;
use PHPUnit\Framework\TestCase;

class TrackBuilderTest extends TestCase
final class TrackBuilderTest extends TestCase
{
public function testCreate(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/TrackInfoBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\TrackInfoBuilder;
use PHPUnit\Framework\TestCase;

class TrackInfoBuilderTest extends TestCase
final class TrackInfoBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/TrackTagsBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\TrackTagsBuilder;
use PHPUnit\Framework\TestCase;

class TrackTagsBuilderTest extends TestCase
final class TrackTagsBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/TrackTopTagsBuilderTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Builder\TrackTopTagsBuilder;
use PHPUnit\Framework\TestCase;

class TrackTopTagsBuilderTest extends TestCase
final class TrackTopTagsBuilderTest extends TestCase
{
public function testForMbid(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Exception/ApiExceptionTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Exception\ApiException;
use PHPUnit\Framework\TestCase;

class ApiExceptionTest extends TestCase
final class ApiExceptionTest extends TestCase
{
public function testToString(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Filter/PeriodTest.php
Expand Up @@ -12,7 +12,7 @@
use Core23\LastFm\Filter\Period;
use PHPUnit\Framework\TestCase;

class PeriodTest extends TestCase
final class PeriodTest extends TestCase
{
public function testOverall(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Filter/RangeFilterTest.php
Expand Up @@ -13,7 +13,7 @@
use DateTime;
use PHPUnit\Framework\TestCase;

class RangeFilterTest extends TestCase
final class RangeFilterTest extends TestCase
{
public function testItIsInstantiable(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Service/AuthServiceTest.php
Expand Up @@ -13,7 +13,7 @@
use Core23\LastFm\Service\AuthService;
use PHPUnit\Framework\TestCase;

class AuthServiceTest extends TestCase
final class AuthServiceTest extends TestCase
{
private $client;

Expand Down
2 changes: 1 addition & 1 deletion tests/Service/GeoServiceTest.php
Expand Up @@ -13,7 +13,7 @@
use Core23\LastFm\Service\GeoService;
use PHPUnit\Framework\TestCase;

class GeoServiceTest extends TestCase
final class GeoServiceTest extends TestCase
{
private $client;

Expand Down
2 changes: 1 addition & 1 deletion tests/Service/LibraryServiceTest.php
Expand Up @@ -13,7 +13,7 @@
use Core23\LastFm\Service\LibraryService;
use PHPUnit\Framework\TestCase;

class LibraryServiceTest extends TestCase
final class LibraryServiceTest extends TestCase
{
private $client;

Expand Down
2 changes: 1 addition & 1 deletion tests/Session/SessionTest.php
Expand Up @@ -13,7 +13,7 @@
use Core23\LastFm\Session\SessionInterface;
use PHPUnit\Framework\TestCase;

class SessionTest extends TestCase
final class SessionTest extends TestCase
{
public function testItIsInstantiable(): void
{
Expand Down

0 comments on commit 509ac25

Please sign in to comment.