worksolutions / bitrix-module-bunit
Bitrix CMS 的 xUnit 框架
1.0.9
2017-07-06 13:46 UTC
Requires
- php: >=5.3.0
- composer/installers: ~1
README
自动化了模块化测试项目。安装(Composer、Marketplace)和使用都很简单。
- 测试
<?php class IblockAmountTestCase extends \WS\BUnit\Cases\BaseCase { /** * @test */ public function iblocksNotEmpty() { CModule::IncludeModule("iblock"); $dbResult = CIBlock::getList(array(), array()); $this->getAssert()->asTrue($dbResult->AffectedRowsCount() > 0, "Число инфоблоков должно быть больше нуля"); } /** * @test */ public function hasNewsIblock() { $result = CIBlock::getList(array(), array("CODE" => "news"))->fetch(); $this->getAssert()->asTrue((bool) $result, "Отсутствует инфоблок новостей"); } }
- 结果