文件名称:模拟-c:使用模拟的C单元测试
文件大小:46KB
文件格式:ZIP
更新时间:2024-03-18 04:53:55
C
用于C单元测试的模拟功能。 什么是单元测试,什么是模拟? 单元测试检查特定功能在特定条件下是否执行特定操作。 Mocks使单元测试可以说:“这是预期调用的列表以及在这种情况下应使用的参数,请告诉我我的代码是否在生成相同的列表”。 回购组织 . ├── build/ ├── code/ └── tests/ 文件夹tests包含用于测试ockock-c的单元测试。 文件夹build包含与单元测试链接的模拟c对象文件。 它也是tests/Makefile转储可执行tests/Makefile的可执行文件,用于运行单元测试以测试Mock-c和最终测试结果输出。 文件夹code包含: 模拟C源代码: Mock.c Mock.h RecordedArg.c RecordedArg.h RecordedCall.c RecordedCall.h ReturnVa
【文件预览】:
mock-c-master
----LICENSE-Unity-Test.md(1KB)
----vim-cheatsheet.md(590B)
----tests()
--------test_Mock.c(10KB)
--------test_runner.c(5KB)
--------test_Mock.h(2KB)
--------test_ReturnValues.c(700B)
--------ExampleCalls.h(567B)
--------ExampleCalls.c(3KB)
--------test_RecordedArg.c(15KB)
--------test_RecordedCall.c(23B)
--------Makefile(1KB)
--------test_ReturnValues.h(298B)
--------test_RecordedArg.h(2KB)
----code()
--------unity.c(48KB)
--------RecordedCall.h(418B)
--------Mock.c(22KB)
--------RecordedArg.c(11KB)
--------test-glib-install.c(210B)
--------unity_internals.h(56KB)
--------ReturnValues.h(343B)
--------RecordedCall.c(671B)
--------Mock.h(1KB)
--------unity.h(51KB)
--------ReturnValues.c(193B)
--------Makefile(610B)
--------RecordedArg.h(2KB)
----LICENSE.md(1KB)
----.gitignore(44B)
----README.md(10KB)
----build()
--------test_runner.md(4KB)