aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/src/SpecTestsuites/Core/ObsoleteKeywordsTest.php
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-04-28 11:02:51 +0900
committernsfisis <nsfisis@gmail.com>2024-04-28 17:38:19 +0900
commit88a77bc5846541e5d6009bc103da378650a649f3 (patch)
treeef4d3a57cc16bf230c3ac25068001f747e45b35e /tests/src/SpecTestsuites/Core/ObsoleteKeywordsTest.php
parentc809cd661bba388d531f24c2ac578fbe6594f45c (diff)
downloadphp-waddiwasi-88a77bc5846541e5d6009bc103da378650a649f3.tar.gz
php-waddiwasi-88a77bc5846541e5d6009bc103da378650a649f3.tar.zst
php-waddiwasi-88a77bc5846541e5d6009bc103da378650a649f3.zip
test: generate PHPUnit classes from WAST files
Diffstat (limited to 'tests/src/SpecTestsuites/Core/ObsoleteKeywordsTest.php')
-rw-r--r--tests/src/SpecTestsuites/Core/ObsoleteKeywordsTest.php77
1 files changed, 77 insertions, 0 deletions
diff --git a/tests/src/SpecTestsuites/Core/ObsoleteKeywordsTest.php b/tests/src/SpecTestsuites/Core/ObsoleteKeywordsTest.php
new file mode 100644
index 0000000..8a15448
--- /dev/null
+++ b/tests/src/SpecTestsuites/Core/ObsoleteKeywordsTest.php
@@ -0,0 +1,77 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Nsfisis\Waddiwasi\Tests\SpecTestsuites\Core;
+
+use Nsfisis\Waddiwasi\Tests\SpecTestsuites\SpecTestsuiteBase;
+use PHPUnit\Framework\Attributes\Depends;
+use PHPUnit\Framework\Attributes\DoesNotPerformAssertions;
+
+final class ObsoleteKeywordsTest extends SpecTestsuiteBase
+{
+ #[DoesNotPerformAssertions]
+ public function testAssertMalformed0(): void
+ {
+ }
+
+ #[DoesNotPerformAssertions]
+ #[Depends('testAssertMalformed0')]
+ public function testAssertMalformed1(): void
+ {
+ }
+
+ #[DoesNotPerformAssertions]
+ #[Depends('testAssertMalformed1')]
+ public function testAssertMalformed2(): void
+ {
+ }
+
+ #[DoesNotPerformAssertions]
+ #[Depends('testAssertMalformed2')]
+ public function testAssertMalformed3(): void
+ {
+ }
+
+ #[DoesNotPerformAssertions]
+ #[Depends('testAssertMalformed3')]
+ public function testAssertMalformed4(): void
+ {
+ }
+
+ #[DoesNotPerformAssertions]
+ #[Depends('testAssertMalformed4')]
+ public function testAssertMalformed5(): void
+ {
+ }
+
+ #[DoesNotPerformAssertions]
+ #[Depends('testAssertMalformed5')]
+ public function testAssertMalformed6(): void
+ {
+ }
+
+ #[DoesNotPerformAssertions]
+ #[Depends('testAssertMalformed6')]
+ public function testAssertMalformed7(): void
+ {
+ }
+
+ #[DoesNotPerformAssertions]
+ #[Depends('testAssertMalformed7')]
+ public function testAssertMalformed8(): void
+ {
+ }
+
+ #[DoesNotPerformAssertions]
+ #[Depends('testAssertMalformed8')]
+ public function testAssertMalformed9(): void
+ {
+ }
+
+ #[DoesNotPerformAssertions]
+ #[Depends('testAssertMalformed9')]
+ public function testAssertMalformed10(): void
+ {
+ }
+}