blob: d3feb5144265d3b45e7edd05105c1522df22bb18 (
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
25
26
27
28
29
30
|
<?php
// SPDX-FileCopyrightText: 2021 Andrea Chirulescu <andrea.chirulescu@gmail.com>
// SPDX-FileCopyrightText: 2021 Harald Eilertsen <haraldei@anduin.net>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
declare(strict_types=1);
require __DIR__ . '/../includes/band.php';
final class BandTest extends WP_UnitTestCase
{
public function testCreatingBandWithName() : void
{
$count = count(GiglogAdmin_Band::all_bands());
$band = GiglogAdmin_Band::create("The Flamboyant Blasphemers");
$this->assertEquals("The Flamboyant Blasphemers", $band->bandname());
$this->assertEquals($count + 1, count(GiglogAdmin_Band::all_bands()));
}
public function testCreateExistingBand() : void
{
$band1 = GiglogAdmin_Band::create("The Flamboyant Blasphemers");
$band2 = GiglogAdmin_Band::create("The Flamboyant Blasphemers");
$this->assertEquals($band1->id(), $band2->id());
}
}
|