Skip to content

Commit aafa490

Browse files
adds failing test
1 parent 5a162f1 commit aafa490

File tree

6 files changed

+40
-2
lines changed

6 files changed

+40
-2
lines changed

tests/E2E/PHPUnit/CheckClassWithMultipleExpressionsTest.php

+14-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public function test_it_can_check_multiple_expressions(): void
3737
ArchRuleTestCase::assertArchRule($rule, $set);
3838
}
3939

40-
public function test_is_final(): void
40+
public function test_is_abstract_in_that(): void
4141
{
42-
$set = ClassSet::fromDir(__DIR__.'/../_fixtures/is_final');
42+
$set = ClassSet::fromDir(__DIR__.'/../_fixtures/is_something');
4343

4444
$rule = Rule::allClasses()
4545
->that(new IsAbstract())
@@ -48,4 +48,16 @@ public function test_is_final(): void
4848

4949
ArchRuleTestCase::assertArchRule($rule, $set);
5050
}
51+
52+
public function test_is_abstract_in_should(): void
53+
{
54+
$set = ClassSet::fromDir(__DIR__.'/../_fixtures/is_something');
55+
56+
$rule = Rule::allClasses()
57+
->that(new ResideInOneOfTheseNamespaces('App'))
58+
->should(new IsAbstract())
59+
->because('we want to prefix abstract classes');
60+
61+
ArchRuleTestCase::assertArchRule($rule, $set);
62+
}
5163
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace App;
6+
7+
abstract class MyAbstract
8+
{
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace App;
6+
7+
interface MyInterface
8+
{
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace App;
6+
7+
readonly class MyReadOnly {}

tests/Unit/Expressions/ForClasses/IsAbstractTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ public function test_interfaces_can_not_be_abstract_and_should_be_ignored(): voi
7676
$because = 'we want to add this rule for our software';
7777
$violations = new Violations();
7878
$isAbstract->evaluate($classDescription, $violations, $because);
79+
7980
self::assertEquals(0, $violations->count());
8081
}
8182

0 commit comments

Comments
 (0)