%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/craftsys/msg91-laravel/tests/ |
Upload File : |
<?php
namespace Craftsys\Tests\Msg91;
use Craftsys\Msg91\Client;
class ServiceProviderTest extends TestCase
{
/**
* Define environment setup.
*
* @param \Illuminate\Foundation\Application $app
*
* @return void
*/
protected function getEnvironmentSetUp($app)
{
$app['config']->set('services.msg91.key', 'my_api_key');
}
/**
* Test that we can create the Msg91 client
* from container binding.
*
* @return void
*/
public function testClientResolutionFromContainer()
{
$client = app(Client::class);
$this->assertInstanceOf(Client::class, $client);
}
}