public function CollectionTest::testToString

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Collections/CollectionTest.php, line 29

Class

CollectionTest

Namespace

Doctrine\Tests\Common\Collections

Code

public function testToString() {
  $this->_coll
    ->add('testing');
  $this
    ->assertTrue(is_string((string) $this->_coll));
}