You are here

class AddThisTestHelper in AddThis 7.4

Hierarchy

Expanded class hierarchy of AddThisTestHelper

File

tests/AddThisTestHelper.php, line 4

View source
class AddThisTestHelper {
  public static function stringContains($string, $contains) {
    return strpos($string, $contains) !== FALSE;
  }
  public static function generateRandomLowercaseString() {
    return drupal_strtolower(DrupalWebTestCase::randomName());
  }

}

Members