From 5f0af0ee52eca982d9f72b874793cc81a52f5a0c Mon Sep 17 00:00:00 2001 From: Tony NGUEREZA Date: Fri, 8 Dec 2023 17:08:11 +0100 Subject: [PATCH] Minor change --- tests/Helper/StrTest.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/Helper/StrTest.php b/tests/Helper/StrTest.php index f52c189..95e7607 100644 --- a/tests/Helper/StrTest.php +++ b/tests/Helper/StrTest.php @@ -259,6 +259,24 @@ public function commonDataProvider(): array ['a_b_c'], [], 'aBC' + ], + [ + 'camel', + ['A_b_c', true], + [], + 'aBC' + ], + [ + 'camel', + ['A_D_c', false], + [], + 'ADC' + ], + [ + 'camel', + ['username', false], + [], + 'Username' ], [ 'toArray',