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