0
我有一個php項目,它具有在我的單元測試代碼路徑中內在測試的作曲家依賴關係。這裏是我的示例代碼:Travis CI默認情況下不區分大小寫?
<?php
// where FooBar is a composer package but I'm purposely typing it incorrectly here
use \fooBaR
public function appendNameToWords(array $words, $name)
{
$start = microtime(true);
$newWords = array_map(function($word){
return $word . $name;
}, $words);
// logs the diff between start and end time
FooBar::logTimer($start);
return $newWords;
}
我的測試僅僅是測試方法,但當然在執行我的源代碼行FooBar::logTimer
。問題是如果我輸錯了類FooBar
爲fooBaR
,我期望我的測試失敗。不幸的是,Travis的構建正在通過......但我不清楚爲什麼。
.travis.yml
文件:
language: php
php:
- 5.6
install: script/install
script:
- script/test
任何想法是什麼地方出錯了?