blob: 42d693e802bcc7a00f11388c82f13a14ac073259 (
plain) (
tree)
|
|
<?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);
}
}
|