summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/Setup_test.php
blob: 5317c56c70bc0354bfd4f2e682a887dbf523519b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

class Setup_test extends PHPUnit_Framework_TestCase {

	public function test_bootstrap_constants()
	{
		$this->assertTrue(defined('PROJECT_BASE'));
		$this->assertTrue(defined('BASEPATH'));
		$this->assertTrue(defined('APPPATH'));
		$this->assertTrue(defined('VIEWPATH'));
	}

}