Example #1
0
 /**
  * Test basic adding of strings for table with explicit schema.
  */
 public function testAddStringWithSchemas()
 {
     $table = "mySchema.myTable";
     $column = "myColumn";
     $value = "myValue";
     // Add the string
     $this->c->add($table . '.' . $column, $value);
     // Verify that the key exists
     $this->assertTrue($this->c->containsKey($table . '.' . $column));
     // Verify that what we get out is what we put in
     $this->assertTrue($this->c->getValue($table . '.' . $column) === $value);
 }