blob: 42d693e802bcc7a00f11388c82f13a14ac073259 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
// SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri
// SPDX-FileCopyrightText: 2024 Harald Eilertsen
//
// SPDX-License-Identifier: AGPL-3.0-or-later
namespace VolseNet\Webtrap\Tests;
use PHPUnit\Framework\TestCase;
/**
* Just a test to check that the tests are working.
*/
class FirstTest extends TestCase
{
/**
* A simple test that should allways pass.
*/
public function testShouldPass(): void
{
$this->assertTrue(true);
}
}
|