Skip to content

[TASK] Make the testcases final #435

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/CSSList/AtRuleBlockListTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* @covers \Sabberworm\CSS\CSSList\AtRuleBlockList
*/
class AtRuleBlockListTest extends TestCase
final class AtRuleBlockListTest extends TestCase
{
/**
* @test
Expand Down
2 changes: 1 addition & 1 deletion tests/CSSList/DocumentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* @covers \Sabberworm\CSS\CSSList\Document
*/
class DocumentTest extends TestCase
final class DocumentTest extends TestCase
{
/**
* @var Document
Expand Down
2 changes: 1 addition & 1 deletion tests/CSSList/KeyFrameTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* @covers \Sabberworm\CSS\CSSList\KeyFrame
*/
class KeyFrameTest extends TestCase
final class KeyFrameTest extends TestCase
{
/**
* @var KeyFrame
Expand Down
2 changes: 1 addition & 1 deletion tests/Comment/CommentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @covers \Sabberworm\CSS\OutputFormat
* @covers \Sabberworm\CSS\OutputFormatter
*/
class CommentTest extends TestCase
final class CommentTest extends TestCase
{
/**
* @test
Expand Down
2 changes: 1 addition & 1 deletion tests/OutputFormatTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* @covers \Sabberworm\CSS\OutputFormat
*/
class OutputFormatTest extends TestCase
final class OutputFormatTest extends TestCase
{
/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion tests/ParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* @covers \Sabberworm\CSS\Value\Size::parse
* @covers \Sabberworm\CSS\Value\URL::parse
*/
class ParserTest extends TestCase
final class ParserTest extends TestCase
{
/**
* @test
Expand Down
2 changes: 1 addition & 1 deletion tests/RuleSet/DeclarationBlockTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* @covers \Sabberworm\CSS\RuleSet\DeclarationBlock
*/
class DeclarationBlockTest extends TestCase
final class DeclarationBlockTest extends TestCase
{
/**
* @param string $sCss
Expand Down
2 changes: 1 addition & 1 deletion tests/RuleSet/LenientParsingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @covers \Sabberworm\CSS\Value\Size::parse
* @covers \Sabberworm\CSS\Value\URL::parse
*/
class LenientParsingTest extends TestCase
final class LenientParsingTest extends TestCase
{
/**
* @test
Expand Down
2 changes: 1 addition & 1 deletion tests/Value/CalcRuleValueListTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* @covers \Sabberworm\CSS\Value\CalcRuleValueList
*/
class CalcRuleValueListTest extends TestCase
final class CalcRuleValueListTest extends TestCase
{
/**
* @test
Expand Down