blob: dcc3d08797db80fbeae508686488c593b1841f81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php
class Lang_test extends CI_TestCase {
protected $lang;
public function set_up()
{
$cls = $this->ci_core_class('lang');
$this->lang = new $cls;
}
// --------------------------------------------------------------------
public function test_load()
{
// get_config needs work
$this->markTestIncomplete('get_config needs work');
//$this->assertTrue($this->lang->load('profiler'));
}
// --------------------------------------------------------------------
public function test_line()
{
$this->markTestIncomplete('get_config needs work');
$this->assertEquals('URI STRING', $this->lang->line('profiler_uri_string'));
}
}
|