service = app('OrderService'); } public function testGetOrderSyncAt() { $key = config('sync.order_sync.cache_prefix.created_at'); $data = $this->service->getOrderSyncAt($key); $this->assertNotEmpty($data); } /**+ * @test */ public function getCreatedSyncAt() { $key = config('sync.order_sync.cache_prefix.updated_at'); $data = $this->service->getOrderSyncAt($key,'renewal'); $this->assertNotEmpty($data); } public function tearDown(): void { parent::tearDown(); // TODO: Change the autogenerated stub } }