summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/Setup_test.php
blob: 43545822a19e035a72c30e2707ec7f4cf41ebc51 (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'));
	}

}