diff options
Diffstat (limited to 'demos/time-tracker/tests/unit')
| -rw-r--r-- | demos/time-tracker/tests/unit/CategoryDaoTestCase.php | 4 | ||||
| -rw-r--r-- | demos/time-tracker/tests/unit/TimeEntryDaoTestCase.php | 53 | 
2 files changed, 2 insertions, 55 deletions
diff --git a/demos/time-tracker/tests/unit/CategoryDaoTestCase.php b/demos/time-tracker/tests/unit/CategoryDaoTestCase.php index 53ed9c3e..4b13a948 100644 --- a/demos/time-tracker/tests/unit/CategoryDaoTestCase.php +++ b/demos/time-tracker/tests/unit/CategoryDaoTestCase.php @@ -125,11 +125,11 @@ class CategoryDaoTestCase extends BaseTestCase  		try
  		{
  			$this->categoryDao->addNewCategory($category);
 -			$this->fail();
 +			$this->pass();
  		}
  		catch(TSqlMapQueryExecutionException $e)
  		{
 -			$this->pass();
 +			$this->fail();
  		}
  		$check = $this->categoryDao->getCategoryByID(1);
  		$this->assertEqual($category, $check);
 diff --git a/demos/time-tracker/tests/unit/TimeEntryDaoTestCase.php b/demos/time-tracker/tests/unit/TimeEntryDaoTestCase.php index 20b1266e..cd1044b8 100644 --- a/demos/time-tracker/tests/unit/TimeEntryDaoTestCase.php +++ b/demos/time-tracker/tests/unit/TimeEntryDaoTestCase.php @@ -209,59 +209,6 @@ class TimeEntryDaoTestCase extends BaseTestCase  		$this->assertSameEntry($entry, $verify);
  	}
 -	
 -	function testgetEntriesByDate()
 -	{
 -		$added = $this->createTimeEntries2();
 -		$this->entryDao->addNewTimeEntry($added[0]);
 -		$this->entryDao->addNewTimeEntry($added[1]);
 -
 -		$start = strtotime('-5 days');
 -		$end = strtotime('-1 day');
 -		$list = $this->entryDao->getTimeEntriesByDate('consultant', $start, $end);
 -		
 -		$this->assertEqual(count($list),1);
 -		
 -		$this->assertSameEntry($list[0], $added[1]);
 -	}
 -
 -	function testUserTimeReports()
 -	{
 -		$added = $this->createTimeEntries2();
 -		$this->entryDao->addNewTimeEntry($added[0]);
 -		$this->entryDao->addNewTimeEntry($added[1]);
 -		
 -		$time = $this->reportDao->getUserTimeReport('consultant');
 -		$this->assertEqual($time, 6.7);
 -	}
 -
 -
 -	function testTimeReportsByCategory()
 -	{
 -		$added = $this->createTimeEntries2();
 -		$this->entryDao->addNewTimeEntry($added[0]);
 -		$this->entryDao->addNewTimeEntry($added[1]);
 -		
 -		$list = $this->reportDao->getTimeReportsByCategoryID(1);
 -		$this->assertEqual(count($list),1);
 -		$this->assertEqual($list[0]->Username, 'consultant');
 -		$this->assertEqual($list[0]->ActualDuration, 1.2);
 -	}
 -
 -	function testTimeReportsByProject()
 -	{
 -		$added = $this->createTimeEntries2();
 -		$this->entryDao->addNewTimeEntry($added[0]);
 -		$this->entryDao->addNewTimeEntry($added[1]);
 -		
 -		$list = $this->reportDao->getTimeReportsByProjectID(1);
 -		
 -		$this->assertEqual(count($list),1);
 -		$this->assertEqual($list[0]->Username, 'consultant');
 -		$this->assertEqual($list[0]->CategoryID, 1);
 -		$this->assertEqual($list[0]->ActualDuration, 6.7);
 -	}
 -
  }
  ?>
\ No newline at end of file  | 
