Skip to content

Instantly share code, notes, and snippets.

@msonnabaum
Created April 30, 2013 22:08
Show Gist options
  • Save msonnabaum/5492328 to your computer and use it in GitHub Desktop.
Save msonnabaum/5492328 to your computer and use it in GitHub Desktop.
<?php
class SelectorTest extends PHPUnit_Framework_TestCase {
protected function setUp() {
$this->xml = new DomDocument;
$this->xml->loadXML('<div id="wtf"><div class="blah"></div></div>');
}
public function testSelectors() {
$this->assertSelectCount('#wtf', 1, $this->xml);
$this->assertSelectCount('.blah', 1, $this->xml);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment