($data_file)
| 50 | } |
| 51 | |
| 52 | protected function add_data_file($data_file) |
| 53 | { |
| 54 | if (is_null($this->data_files)) { |
| 55 | $this->data_files = array(); |
| 56 | } |
| 57 | $data_file = "$data_file." . self::current_timestamp(); |
| 58 | $full = join(DIRECTORY_SEPARATOR, array(TEST_TEMP_DIR, $data_file)); |
| 59 | $this->data_files [] = $full; |
| 60 | return $full; |
| 61 | } |
| 62 | |
| 63 | public static function current_timestamp() |
| 64 | { |
no test coverage detected