You are here

public function TagadelicDrupalWrapperTest::testShuffle in Tagadelic 7.2

@covers TagadelicDrupalWrapper::shuffle

File

tests/TagadelicDrupalWrapperTest.php, line 105

Class

TagadelicDrupalWrapperTest

Code

public function testShuffle() {
  $array_to_shuffle = array(
    "a",
    "b",
  );
  $this
    ->assertTrue(method_exists($this->object, "shuffle"));

  //Cannot test the method signature, because we cannot redeclare global "shuffle()"
}