Ejemplo n.º 1
0
 /**
  * @covers GridField::getColumnCount
  */
 public function testGetColumnCount()
 {
     $obj = new GridField('testfield', 'testfield', Member::get());
     $this->assertEquals(3, $obj->getColumnCount());
 }
Ejemplo n.º 2
0
	/**
	 * @covers GridField::getColumnCount
	 */
	public function testGetColumnCount() {
		$obj = new GridField('testfield', 'testfield', DataList::create('Member'));
		$this->assertEquals(3, $obj->getColumnCount());
	}