akaunting/tests/Feature/Reports/ProfitLossTest.php

16 lines
351 B
PHP
Raw Normal View History

2018-12-27 12:22:32 +03:00
<?php
namespace Tests\Feature\Reports;
use Tests\Feature\FeatureTestCase;
class ProfitLossTest extends FeatureTestCase
{
public function testItShouldSeeProfitLossPage()
{
$this->loginAs()
->get(url('reports/profit-loss'))
->assertStatus(200)
->assertSeeText(trans('reports.profit_loss'));
}
}