Files
firefly-iii/tests/ExampleTest.php

28 lines
528 B
PHP
Raw Normal View History

2016-09-16 06:19:40 +02:00
<?php
/**
* ExampleTest.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2016-09-16 06:19:40 +02:00
2016-10-09 07:58:27 +02:00
/**
* Class ExampleTest
*/
2016-09-16 06:19:40 +02:00
class ExampleTest extends TestCase
{
/**
* A basic functional test example.
*
* @return void
*/
public function testBasicExample()
{
$this->visit('/')
2016-11-19 15:55:49 +01:00
->see('Firefly');
2016-09-16 06:19:40 +02:00
}
}