コード例 #1
0
ファイル: StringsTest.php プロジェクト: PaulAntunes/gclf-paul
 public function testSplitOnUnderscores()
 {
     $expectations = [["under_score", "under score"]];
     foreach ($expectations as $expect) {
         $this->assertEquals($expect[1], \Packaged\Helpers\Strings::splitOnUnderscores($expect[0]));
     }
 }