<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>recess/test/AllTests.php</filename>
    </added>
    <added>
      <filename>recess/test/bootstrap.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/RecessAllTests.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/PdoDsnSettings.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/RecessDatabaseAllTests.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/orm/ModelTest.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/orm/ModelTestMysql.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/orm/ModelTestSqlite.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/orm/RecessDatabaseOrmAllTests.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/orm/sample-data.xml</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/pdo/PdoDataSetTest.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/pdo/PdoDataSetTestMysql.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/pdo/PdoDataSetTestSqlite.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/pdo/RecessDatabasePdoAllTests.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/pdo/SqlitePdoDataSourceProviderTest.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/pdo/sample-data.xml</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/sql/RecessDatabaseSqlAllTests.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/sql/SelectSqlBuilderTest.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/database/sql/SqlBuilderTest.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/framework/RecessFrameworkAllTests.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/framework/routing/RecessFrameworkRoutingAllTests.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/framework/routing/RtNodeTest.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/lang/InflectorTest.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/lang/RecessLangAllTests.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/lang/RecessObjectTest.php</filename>
    </added>
    <added>
      <filename>recess/test/recess/lang/RecessReflectionClassTest.php</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,6 +1,7 @@
 *.cache
 *.settings
 .project
+.buildpath
 *.db
 recess/temp/compiled/*
 recess/temp/*.*</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -538,7 +538,12 @@ class ModelDescriptor extends RecessObjectDescriptor {
 	function setTable($table, $loadColumns = true) {
 		$this-&gt;table = $table;
 		if($loadColumns) {
-			$this-&gt;columns = $this-&gt;getSource()-&gt;getColumns($this-&gt;table);
+			$source = $this-&gt;getSource();
+			if(isset($source)) {
+				$this-&gt;columns = $this-&gt;getSource()-&gt;getColumns($this-&gt;table);
+			} else {
+				throw new RecessException('Data Source &quot;' . $this-&gt;getSourceName() . '&quot; is not set.', array());
+			}
 		} else {
 			$this-&gt;columns = array();
 		}</diff>
      <filename>recess/lib/recess/database/orm/Model.class.php</filename>
    </modified>
    <modified>
      <diff>@@ -388,17 +388,16 @@ class MysqlDataSourceProvider implements IPdoDataSourceProvider {
 			}
 		}
 		
-		$statement = $source-&gt;prepare($builder-&gt;$action());
+		$sql = $builder-&gt;$action();
+		$statement = $source-&gt;prepare($sql);
 		$arguments = $builder-&gt;getPdoArguments();
 		foreach($arguments as &amp;$argument) {
 			// Begin workaround for PDO's poor numeric binding
 			$queryParameter = $argument-&gt;getQueryParameter();
 			if(is_numeric($queryParameter)) { continue; } 
 			// End Workaround
-			
 			// Ignore parameters that aren't used in this $action (i.e. assignments in select)
 			if(strpos($sql, $argument-&gt;getQueryParameter()) === false) { continue; } 
-			
 			$statement-&gt;bindValue($argument-&gt;getQueryParameter(), $argument-&gt;value);
 		}
 		return $statement;</diff>
      <filename>recess/lib/recess/database/pdo/MysqlDataSourceProvider.class.php</filename>
    </modified>
    <modified>
      <diff>@@ -90,7 +90,7 @@ class PdoDataSet implements Iterator, Countable, ArrayAccess, ISqlSelectOptions,
 	 * Once results are needed this method executes the accumulated query
 	 * on the data source.
 	 */
-	protected function realize() {
+	protected function realize() {  
 		if(!$this-&gt;hasResults) {
 			unset($this-&gt;results);
 			$this-&gt;results = $this-&gt;source-&gt;queryForClass($this-&gt;sqlBuilder, $this-&gt;rowClass);
@@ -117,7 +117,9 @@ class PdoDataSet implements Iterator, Countable, ArrayAccess, ISqlSelectOptions,
 		return $this-&gt;results;
 	}
 	
-	public function count() { return iterator_count($this); }
+	public function count() {
+		return iterator_count($this); 
+	}
 	
 	
 	/*</diff>
      <filename>recess/lib/recess/database/pdo/PdoDataSet.class.php</filename>
    </modified>
    <modified>
      <diff>@@ -43,7 +43,7 @@ class SqlBuilder implements ISqlConditions, ISqlSelectOptions {
 	public function insert() {
 		$this-&gt;insertSanityCheck();
 
-		$sql = 'INSERT INTO ' . $this-&gt;table;
+		$sql = 'INSERT INTO ' . self::escapeWithTicks($this-&gt;table);
 		
 		$columns = '';
 		$values = '';
@@ -52,7 +52,7 @@ class SqlBuilder implements ISqlConditions, ISqlSelectOptions {
 		foreach($this-&gt;assignments as $assignment) {
 			if($first) { $first = false; }
 			else { $columns .= ', '; $values .= ', '; }
-			$columns .= '`' . str_replace($table_prefix, '', $assignment-&gt;column) . '`';
+			$columns .= self::escapeWithTicks(str_replace($table_prefix, '', $assignment-&gt;column));
 			$values .= $assignment-&gt;getQueryParameter();
 		}
 		$columns = ' (' . $columns . ')';
@@ -129,7 +129,7 @@ class SqlBuilder implements ISqlConditions, ISqlSelectOptions {
 	 */
 	public function delete() {
 		$this-&gt;deleteSanityCheck();
-		return 'DELETE FROM ' . $this-&gt;table . $this-&gt;whereHelper();
+		return 'DELETE FROM ' . self::escapeWithTicks($this-&gt;table) . $this-&gt;whereHelper();
 	}
 	
 	/**
@@ -157,14 +157,14 @@ class SqlBuilder implements ISqlConditions, ISqlSelectOptions {
 	 */
 	public function update() {
 		$this-&gt;updateSanityCheck();
-		$sql = 'UPDATE ' . $this-&gt;table . ' SET ';
+		$sql = 'UPDATE ' . self::escapeWithTicks($this-&gt;table) . ' SET ';
 		
 		$first = true;
 		$table_prefix = $this-&gt;tableAsPrefix() . '.';
 		foreach($this-&gt;assignments as $assignment) {
 			if($first) { $first = false; }
 			else { $sql .= ', '; }
-			$sql .= '`' . str_replace($table_prefix, '', $assignment-&gt;column) . '` = ' . $assignment-&gt;getQueryParameter();;
+			$sql .= self::escapeWithTicks(str_replace($table_prefix, '', $assignment-&gt;column)) . ' = ' . $assignment-&gt;getQueryParameter();;
 		}
 		
 		$sql .= $this-&gt;whereHelper();
@@ -370,13 +370,13 @@ class SqlBuilder implements ISqlConditions, ISqlSelectOptions {
 	public function select() {
 		$this-&gt;selectSanityCheck();
 
-		$sql = 'SELECT ' . $this-&gt;distinct . $this-&gt;select;
+		$sql = 'SELECT ' . $this-&gt;distinct . self::escapeWithTicks($this-&gt;select);
 
 		foreach($this-&gt;selectAs as $selectAs) {
 			$sql .= ', ' . $selectAs;
 		}
 		
-		$sql .= ' FROM ' . $this-&gt;table;
+		$sql .= ' FROM ' . self::escapeWithTicks($this-&gt;table);
 		
 		$sql .= $this-&gt;joinHelper();
 		
@@ -551,7 +551,7 @@ class SqlBuilder implements ISqlConditions, ISqlSelectOptions {
 		if(!empty($this-&gt;conditions)) {
 			foreach($this-&gt;conditions as $clause) {
 				if(!$first) { $sql .= ' AND '; } else { $first = false; } // TODO: Figure out how we'll do ORing
-				$sql .= $clause-&gt;column . ' ' . $clause-&gt;operator . ' ' . $clause-&gt;getQueryParameter();
+				$sql .= self::escapeWithTicks($clause-&gt;column) . $clause-&gt;operator . $clause-&gt;getQueryParameter();
 			}
 		}
 		
@@ -559,7 +559,7 @@ class SqlBuilder implements ISqlConditions, ISqlSelectOptions {
 			$assignments = $this-&gt;cleansedAssignmentsAsConditions();
 			foreach($assignments as $clause) {
 				if(!$first) { $sql .= ' AND '; } else { $first = false; } // TODO: Figure out how we'll do ORing
-				$sql .= $clause-&gt;column . ' = ' . $clause-&gt;getQueryParameter();
+				$sql .= self::escapeWithTicks($clause-&gt;column) . ' = ' . $clause-&gt;getQueryParameter();
 			}
 		}
 		
@@ -573,8 +573,8 @@ class SqlBuilder implements ISqlConditions, ISqlSelectOptions {
 	protected function joinHelper() {
 		$sql = '';
 		if(!empty($this-&gt;joins)) {
-			$this-&gt;joins = array_reverse($this-&gt;joins, true);
-			foreach($this-&gt;joins as $join) {
+			$joins = array_reverse($this-&gt;joins, true);
+			foreach($joins as $join) {
 				$joinStatement = '';
 				
 				if(isset($join-&gt;natural)) {
@@ -587,8 +587,8 @@ class SqlBuilder implements ISqlConditions, ISqlSelectOptions {
 					$joinStatement .= $join-&gt;innerOuterOrCross . ' ';
 				}
 				
-				$onStatement = ' ON ' . $join-&gt;tablePrimaryKey . ' = ' . $join-&gt;fromTableForeignKey;
-				$joinStatement .= 'JOIN ' . $join-&gt;table . $onStatement;
+				$onStatement = ' ON ' . self::escapeWithTicks($join-&gt;tablePrimaryKey) . ' = ' . self::escapeWithTicks($join-&gt;fromTableForeignKey);
+				$joinStatement .= 'JOIN ' . self::escapeWithTicks($join-&gt;table) . $onStatement;
 				
 				$sql .= $joinStatement;
 			}
@@ -596,6 +596,22 @@ class SqlBuilder implements ISqlConditions, ISqlSelectOptions {
 		return $sql;
 	}
 	
+	protected static function escapeWithTicks($string) {
+		if($string == '*') {
+			return $string;
+		}
+		if(strpos($string,Library::dotSeparator) !== false) {
+			$parts = explode('.', $string);
+			if(isset($parts[1]) &amp;&amp; $parts[1] == '*') {
+				return '`' . $parts[0] . '`.*';
+			} else {
+				return '`' . implode('`.`', $parts) . '`';
+			}
+		} else {
+			return '`' . $string . '`';
+		}
+	}
+	
 	protected function orderByHelper() {
 		$sql = '';
 		if(!empty($this-&gt;orderBy)){
@@ -631,17 +647,17 @@ class Criterion {
 	public $value;
 	public $operator;
 	
-	const GREATER_THAN = '&gt;';
-	const GREATER_THAN_EQUAL_TO = '&gt;=';
+	const GREATER_THAN = ' &gt; ';
+	const GREATER_THAN_EQUAL_TO = ' &gt;= ';
 	
-	const LESS_THAN = '&lt;';
-	const LESS_THAN_EQUAL_TO = '&lt;=';
+	const LESS_THAN = ' &lt; ';
+	const LESS_THAN_EQUAL_TO = ' &lt;= ';
 	
 	const EQUAL_TO = ' = ';
-	const NOT_EQUAL_TO = '!=';
+	const NOT_EQUAL_TO = ' != ';
 	
-	const LIKE = 'LIKE';
-	const NOT_LIKE = 'NOT LIKE';
+	const LIKE = ' LIKE ';
+	const NOT_LIKE = ' NOT LIKE ';
 	
 	const COLON = ':';
 	</diff>
      <filename>recess/lib/recess/database/sql/SqlBuilder.class.php</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>TestRunner.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/HELP_MY_TESTS_DONT_WORK_ANYMORE</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/LICENSE</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/README</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/VERSION</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/authentication.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/autorun.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/browser.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/collector.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/compatibility.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/cookies.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/default_reporter.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/detached.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/authentication_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/browser_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/docs.css</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/expectation_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/form_testing_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/group_test_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/index.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/mock_objects_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/overview.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/partial_mocks_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/reporter_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/unit_test_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/en/web_tester_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/authentication_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/browser_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/docs.css</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/expectation_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/form_testing_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/group_test_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/index.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/mock_objects_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/overview.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/partial_mocks_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/reporter_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/server_stubs_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/unit_test_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/docs/fr/web_tester_documentation.html</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/dumper.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/eclipse.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/encoding.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/errors.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/exceptions.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/expectation.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/extensions/pear_test_case.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/extensions/phpunit_test_case.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/extensions/testdox.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/extensions/testdox/test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/form.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/frames.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/http.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/invoker.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/mock_objects.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/page.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/parser.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/reflection_php4.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/reflection_php5.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/remote.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/reporter.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/scorer.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/selector.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/shell_tester.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/simpletest.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/socket.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/tag.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/acceptance_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/adapter_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/all_tests.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/authentication_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/autorun_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/bad_test_suite.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/browser_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/collector_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/command_line_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/compatibility_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/cookies_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/detached_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/dumper_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/eclipse_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/encoding_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/errors_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/exceptions_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/expectation_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/form_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/frames_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/http_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/interfaces_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/live_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/mock_objects_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/page_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/parse_error_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/parser_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/reflection_php4_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/reflection_php5_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/remote_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/shell_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/shell_tester_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/simpletest_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/socket_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/support/collector/collectable.1</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/support/collector/collectable.2</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/support/empty_test_file.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/support/latin1_sample</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/support/spl_examples.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/support/supplementary_upload_sample.txt</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/support/test1.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/support/upload_sample.txt</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/tag_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/test_with_parse_error.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/unit_tester_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/unit_tests.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/url_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/user_agent_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/visual_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/web_tester_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test/xml_test.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/test_case.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/unit_tester.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/url.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/user_agent.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/web_tester.php</filename>
    </removed>
    <removed>
      <filename>recess/lib/simpletest/xml.php</filename>
    </removed>
    <removed>
      <filename>recess/test/lib/recess/database/orm/ModelTest.class.php</filename>
    </removed>
    <removed>
      <filename>recess/test/lib/recess/database/pdo/MutableSelectResultsTest.class.php</filename>
    </removed>
    <removed>
      <filename>recess/test/lib/recess/database/pdo/MutableSelectSetTest.class.php</filename>
    </removed>
    <removed>
      <filename>recess/test/lib/recess/database/pdo/PdoDataSetTest.class.php</filename>
    </removed>
    <removed>
      <filename>recess/test/lib/recess/database/pdo/SqlitePdoDataSourceTest.class.php</filename>
    </removed>
    <removed>
      <filename>recess/test/lib/recess/database/sql/SelectSqlBuilderTest.class.php</filename>
    </removed>
    <removed>
      <filename>recess/test/lib/recess/database/sql/SqlBuilderTest.class.php</filename>
    </removed>
    <removed>
      <filename>recess/test/lib/recess/framework/routing/RtNodeTest.class.php</filename>
    </removed>
    <removed>
      <filename>recess/test/lib/recess/lang/InflectorTest.class.php</filename>
    </removed>
    <removed>
      <filename>recess/test/lib/recess/lang/RecessObjectTest.class.php</filename>
    </removed>
    <removed>
      <filename>recess/test/lib/recess/lang/RecessReflectionClassTest.class.php</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>ee292b293a44d73ca68efce8ed86e5f5a4a6f90d</id>
    </parent>
  </parents>
  <author>
    <name>KrisJordan</name>
    <email>krisjordan@gmail.com</email>
  </author>
  <url>http://github.com/recess/recess/commit/0732afaedb8a178a8d3265e7258560ea9a0eecfa</url>
  <id>0732afaedb8a178a8d3265e7258560ea9a0eecfa</id>
  <committed-date>2009-02-17T01:37:22-08:00</committed-date>
  <authored-date>2009-02-17T01:37:22-08:00</authored-date>
  <message>Moved from simpletest to PHPUnit</message>
  <tree>d3b679161ea5f5f0ec81785acbf492f483cfae78</tree>
  <committer>
    <name>KrisJordan</name>
    <email>krisjordan@gmail.com</email>
  </committer>
</commit>
