12345678910111213141516171819202122232425262728 |
- <?php
- namespace Tests\Feature;
- use Tests\TestCase;
- use Illuminate\Foundation\Testing\WithFaker;
- use Illuminate\Foundation\Testing\RefreshDatabase;
- class IndexTest extends TestCase
- {
- /**
- * A basic feature test example.
- *
- * @return void
- */
- public function testExample()
- {
- $response = $this->get('/');
- $response->assertStatus(200);
- }
- public function testProfitPolygonalChart()
- {
- $response = $this->get('index/profitChart');
- $response->assertStatus(200);
- }
- }
|