针对PHP的单元测试Haxe

时间:2015-02-07 14:35:44

标签: unit-testing haxe

我将使用Haxe和PHP目标来开发博客系统。我想用TDD写它。我自然会使用数据库。怎么办呢?

2 个答案:

答案 0 :(得分:0)

也许这可以提供帮助,它来自旧文档,但仍然相关http://old.haxe.org/doc/cross/unit

它也有很好的库,比如https://github.com/massiveinteractive/MassiveUnit/

答案 1 :(得分:0)

这是working setup,使用的是我为宠物项目制作的MassiveUnit

./backend/
├── build.hxml
├── Dockerfile
├── src
│   ├── Main.hx
│   └── Stats.hx     # unit under test
├── test
│   ├── StatsTest.hx # a simple test case
│   ├── TestMain.hx  # tests runner
│   └── TestSuite.hx # collect tests to execute
└── test.hxml