public function testUpdateWrongFieldType()
 {
     $schema = new ParseSchema();
     $this->setExpectedException('Exception', 'WrongType is not a valid type.');
     $schema->addField('NewTestField', 'WrongType');
     $result = $schema->update();
 }