Report Tests Added
This commit is contained in:
16
tests/Feature/Reports/IncomeSummaryTest.php
Normal file
16
tests/Feature/Reports/IncomeSummaryTest.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature\Reports;
|
||||
|
||||
use Tests\Feature\FeatureTestCase;
|
||||
|
||||
class IncomeSummaryTest extends FeatureTestCase
|
||||
{
|
||||
public function testItShouldSeeIncomeSummaryPage()
|
||||
{
|
||||
$this->loginAs()
|
||||
->get(url('reports/income-summary'))
|
||||
->assertStatus(200)
|
||||
->assertSeeText(trans('reports.summary.income'));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user