Domain\Config\ConfigRepositoryTest::test_store PHP Метод

test_store() публичный Метод

public test_store ( )
    public function test_store()
    {
        $repo = App::make(ConfigRepository::class);
        $store = $repo->store(['name' => 'oi']);
        $this->assertInstanceOf(Config::class, $store);
        $this->assertInstanceOf(Carbon::class, $store->created_at);
    }