function GraphUnitTest::displayArray

Helper function to output vertices as comma-separated list.

Parameters

$paths: An array containing a list of vertices.

$keys: (optional) Whether to output the keys of $paths instead of the values.

3 calls to GraphUnitTest::displayArray()
GraphUnitTest::assertComponents in modules/simpletest/tests/graph.test
Verify expected components in a graph.
GraphUnitTest::assertPaths in modules/simpletest/tests/graph.test
Verify expected paths in a graph.
GraphUnitTest::assertReversePaths in modules/simpletest/tests/graph.test
Verify expected reverse paths in a graph.

File

modules/simpletest/tests/graph.test, line 186

Class

GraphUnitTest
Unit tests for the graph handling features.

Code

function displayArray($paths, $keys = FALSE) {
    if (!empty($paths)) {
        return implode(', ', $keys ? array_keys($paths) : $paths);
    }
    else {
        return '(empty)';
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.