<?php

class DashboardTest extends TestCase
{
    /**
     * Test to check get admin dashboard
     *
     * @return void
     */
    public function testAdminDash()
    {
       $response = $this->call('GET', 'api/v1/admin/dashboard');
       $this->assertEquals(200, $response->status());
    }
    
    /**
     * Test to check get manager dashboard
     *
     * @return void
     */
    public function testManagerDash()
    {
       $response = $this->call('GET', 'api/v1/manager/dashboard');
       $this->assertEquals(200, $response->status());
    }
    
    
    
}
