1
0
mirror of synced 2025-01-18 14:31:40 +03:00
doctrine2/tests/BooleanTestCase.php

48 lines
1.5 KiB
PHP
Raw Normal View History

<?php
class Doctrine_BooleanTestCase extends Doctrine_UnitTestCase {
public function prepareData() { }
public function prepareTables() {
$this->tables = array("BooleanTest");
parent::prepareTables();
}
2006-09-26 20:45:29 +00:00
public function testSetFalse() {
$test = new BooleanTest();
2006-09-26 20:45:29 +00:00
$test->is_working = false;
2006-09-26 20:45:29 +00:00
$this->assertEqual($test->is_working, false);
$this->assertEqual($test->getState(), Doctrine_Record::STATE_TDIRTY);
$test->save();
2006-09-26 20:45:29 +00:00
$test->refresh();
$this->assertEqual($test->is_working, false);
2006-09-26 20:45:29 +00:00
}
2006-09-26 20:45:29 +00:00
public function testSetTrue() {
$test = new BooleanTest();
2006-09-26 20:45:29 +00:00
$test->is_working = true;
$this->assertEqual($test->is_working, true);
$test->save();
2006-09-26 20:45:29 +00:00
$test->refresh();
$this->assertEqual($test->is_working, true);
$this->connection->clear();
$test = $test->getTable()->find($test->id);
$this->assertEqual($test->is_working, true);
}
2006-09-26 20:45:29 +00:00
public function testFetching() {
$query = new Doctrine_Query($this->connection);
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = ?', array(false));
2006-09-26 20:45:29 +00:00
$this->assertEqual(count($ret), 1);
$query = new Doctrine_Query($this->connection);
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = ?', array(true));
2006-09-26 20:45:29 +00:00
$this->assertEqual(count($ret), 1);
}
2006-09-26 20:45:29 +00:00
}
?>