Example #1
0
 /**
  * test normalizeParamForArray() method
  *
  * @test
  */
 public function normalizeParamForArray()
 {
     $this->generateComponent();
     $this->assertSame([], $this->Api->normalizeParamForArray(''));
     $this->assertSame([], $this->Api->normalizeParamForArray(['']));
     $this->assertSame(['string'], $this->Api->normalizeParamForArray('string'));
     $this->assertSame(['array'], $this->Api->normalizeParamForArray(['array']));
 }