0
我有這個類我想在phpspec測試:自定義構造函數和phpspec
class Something
{
protected $property;
public function __construct($someId)
{
$this->property = Model::find($someId);
}
}
型號:: find()方法返回一個模型實例。
而且我不想phpspec使用DB等 我試圖
class SomethingSpec
{
public function let(Model $model)
{
$this->property = $model;
}
it_is_initializable...
但是,這並不工作。
有人嗎?
我一直在懷疑。感謝您的確認! – Christophe