From d1af42853333f39815b9a8d0ea5e7d17bd5dbcb6 Mon Sep 17 00:00:00 2001 From: panliang <1163816051@qq.com> Date: Mon, 23 Oct 2023 21:51:38 +0800 Subject: [PATCH] test --- tests/Feature/ExampleTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index 17dae0e6..0f2ae9a4 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -2,6 +2,7 @@ namespace Tests\Feature; +use App\Models\Order; use Tests\TestCase; class ExampleTest extends TestCase @@ -13,7 +14,8 @@ class ExampleTest extends TestCase */ public function test_example() { - + $list = Order::where('wx_share->status', 'Y')->get(); + dump($list->count()); $this->assertTrue(true); } }