예제 #1
0
파일: DataTest.php 프로젝트: aiesh/magento2
 public function testSplitSku()
 {
     $sku = 'one-two-three';
     $this->assertEquals(array('on', 'e-', 'tw', 'o-', 'th', 're', 'e'), $this->helper->splitSku($sku, 2));
 }