Ejemplo n.º 1
0
	function testSetKeyFieldAndValueField() {
		$list = DataList::create("DataObjectTest_TeamComment");
		$map = new SS_Map($list);
		$map->setKeyField('Name');
		$map->setValueField('Comment');
		$this->assertEquals('This is a team comment by Joe', $map['Joe']);
	}