blob: 40c87f61b2b05755ee7bea3b5f9f35ec40556757 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\Tests\SpecTestsuites\Core;
use Nsfisis\Waddiwasi\Tests\SpecTestsuites\SpecTestsuiteBase;
use PHPUnit\Framework\Attributes\Depends;
final class TableSubTest extends SpecTestsuiteBase
{
public function testAssertInvalid0(): void
{
$this->runAssertInvalidCommand(
filename: 'table-sub.0.wasm',
text: 'type mismatch',
line: 2,
);
}
#[Depends('testAssertInvalid0')]
public function testAssertInvalid1(): void
{
$this->runAssertInvalidCommand(
filename: 'table-sub.1.wasm',
text: 'type mismatch',
line: 13,
);
}
}
|