Tests a select element when #options is not set.
function testEmptySelect() {
$this
->drupalGet('form-test/empty-select');
$this
->assertFieldByXPath("//select[1]", NULL, 'Select element found.');
$this
->assertNoFieldByXPath("//select[1]/option", NULL, 'No option element found.');
}