xref: /webtrees/tests/app/Services/EmailServiceTest.php (revision 89f7189b61a494347591c99bdb92afb7d8b66e1b)
1e563f71aSGreg Roach<?php
2e563f71aSGreg Roach
3e563f71aSGreg Roach/**
4e563f71aSGreg Roach * webtrees: online genealogy
5*89f7189bSGreg Roach * Copyright (C) 2021 webtrees development team
6e563f71aSGreg Roach * This program is free software: you can redistribute it and/or modify
7e563f71aSGreg Roach * it under the terms of the GNU General Public License as published by
8e563f71aSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9e563f71aSGreg Roach * (at your option) any later version.
10e563f71aSGreg Roach * This program is distributed in the hope that it will be useful,
11e563f71aSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12e563f71aSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13e563f71aSGreg Roach * GNU General Public License for more details.
14e563f71aSGreg Roach * You should have received a copy of the GNU General Public License
15*89f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16e563f71aSGreg Roach */
17e563f71aSGreg Roach
18e563f71aSGreg Roachdeclare(strict_types=1);
19e563f71aSGreg Roach
20e563f71aSGreg Roachnamespace Fisharebest\Webtrees;
21e563f71aSGreg Roach
22e563f71aSGreg Roachuse Fisharebest\Webtrees\Services\EmailService;
23e563f71aSGreg Roach
24e563f71aSGreg Roach/**
25e563f71aSGreg Roach * Test harness for the class MailService
265a3d686cSGreg Roach *
275a3d686cSGreg Roach * @covers \Fisharebest\Webtrees\Services\EmailService
28e563f71aSGreg Roach */
295a3d686cSGreg Roachclass EmailServiceTest extends TestCase
30e563f71aSGreg Roach{
31e563f71aSGreg Roach    /**
32e563f71aSGreg Roach     * Test that the class exists
33e563f71aSGreg Roach     *
34e563f71aSGreg Roach     * @return void
35e563f71aSGreg Roach     */
36e563f71aSGreg Roach    public function testClassExists(): void
37e563f71aSGreg Roach    {
38e563f71aSGreg Roach        self::assertTrue(class_exists(EmailService::class));
39e563f71aSGreg Roach    }
40e563f71aSGreg Roach}
41