Answer the question
In order to leave comments, you need to log in
Test not working?
There is 1 test:
<?php
declare(strict_types=1);
namespace Tests\Feature;
use Elastica\Client;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
final class ServiceListTest extends TestCase
{
/** @var \Elastica\Client */
private $client;
use RefreshDatabase;
public function __construct(?string $name = null, array $data = [], string $dataName = '')
{
parent::__construct($name, $data, $dataName);
$this->client = new Client();
}
public function setUp()
{
parent::setUp(); // TODO: Change the autogenerated stub
}
public function tearDown()
{
parent::tearDown(); // TODO: Change the autogenerated stub
}
/**
* @test
*/
public function easyTest()
{
self::assertTrue(true);
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question