|
|
@@ -0,0 +1,26 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+
|
|
|
+namespace Tests\Services\CacheShelfService;
|
|
|
+use App\Services\CacheShelfService;
|
|
|
+use Tests\TestCase;
|
|
|
+
|
|
|
+
|
|
|
+class PutBinToStoreTest extends TestCase
|
|
|
+{
|
|
|
+ /** @var CacheShelfService $service */
|
|
|
+ protected $service;
|
|
|
+
|
|
|
+ protected function setup(): void
|
|
|
+ {
|
|
|
+ $this->service = app(CacheShelfService::class);
|
|
|
+
|
|
|
+ parent::setup(); // todo: change the autogenerated stub
|
|
|
+ }
|
|
|
+
|
|
|
+ protected function tearDown(): void
|
|
|
+ {
|
|
|
+ parent::tearDown(); // TODO: Change the autogenerated stub
|
|
|
+ }
|
|
|
+
|
|
|
+}
|