From 7d2540cb47bbaccfda2797568dca83f7547a3a03 Mon Sep 17 00:00:00 2001
From: Michele Orselli <michele.orselli@gmail.com>
Date: Mon, 24 Mar 2025 21:57:57 +0100
Subject: [PATCH] adds a test case in PatternStringTest

---
 tests/Unit/Analyzer/PatternStringTest.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/Unit/Analyzer/PatternStringTest.php b/tests/Unit/Analyzer/PatternStringTest.php
index 9dde18fa..a608d38e 100644
--- a/tests/Unit/Analyzer/PatternStringTest.php
+++ b/tests/Unit/Analyzer/PatternStringTest.php
@@ -36,6 +36,7 @@ public static function providePatterns(): array
             ['SoThisIsAnExample', 'So*Example', true],
             ['SoThisIsAnExample', '*ThisIsAnExample', true],
             ['SoThisIsAnExample', 'SoThisIsAn*', true],
+            ['SoThisIsAnExample', '*Example', true],
             ['Food\Vegetables\Roots\Carrot', 'Food\*\Roots', false],
             ['Food\Vegetables\Roots\Orange\Carrot', 'Food\*\Roots', false],
             ['Food\Vegetables\Carrot', '*\Vegetables', false],