I would like to test method that takes data from DB.
(我想测试从数据库获取数据的方法。)
It is using static call to class that calling db connection and deals with queries. (它使用静态调用类来调用数据库连接并处理查询。)
public function getEntity($number)
{
return SM::call('database')->sql('SELECT * FROM entities WHERE number=?', $number) ?? [];
}
So i would like to test getEntity() and test if values are correct;
(所以我想测试getEntity()并测试值是否正确;)
ask by Martin translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…