Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit 0003498

Browse files
committed
🚿
1 parent 775be0b commit 0003498

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

tests/Core/AccessTokenTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace chillerlan\OAuthTest\Core;
1313

1414
use chillerlan\OAuth\Core\AccessToken;
15-
use PHPUnit\Framework\Attributes\DataProvider;
15+
use PHPUnit\Framework\Attributes\{DataProvider, Group};
1616
use PHPUnit\Framework\TestCase;
1717
use function sleep, time;
1818

@@ -79,6 +79,7 @@ public function testIsExpired(int $expires, bool $isExpired):void{
7979
$this::assertSame($isExpired, $this->token->isExpired());
8080
}
8181

82+
#[Group('slow')]
8283
public function testIsExpiredVariable():void{
8384
$expiry = (time() + 3600);
8485
$this->token->setExpiry($expiry);

tests/Storage/MemoryStorageTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use chillerlan\OAuth\Storage\{MemoryStorage, OAuthStorageInterface};
1515

16-
class MemoryStorageTest extends StorageTestAbstract{
16+
final class MemoryStorageTest extends StorageTestAbstract{
1717

1818
protected function initStorage():OAuthStorageInterface{
1919
return new MemoryStorage;

tests/Storage/SessionStorageTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use chillerlan\OAuth\OAuthOptions;
1515
use chillerlan\OAuth\Storage\{OAuthStorageInterface, SessionStorage};
1616

17-
class SessionStorageTest extends StorageTestAbstract{
17+
final class SessionStorageTest extends StorageTestAbstract{
1818

1919
protected function initStorage():OAuthStorageInterface{
2020
return new SessionStorage(new OAuthOptions(['sessionStart' => true]));

0 commit comments

Comments
 (0)