【发布时间】:2008-12-04 21:22:59
【问题描述】:
附带基于 NUnit 的单元测试的开源项目通常也附带 NUnit 运行程序和随附的二进制文件。对于 NUnit 2.4.8,将其 bin 目录与实际项目逐字分发相当于 46 个文件和一个空白的 addins 目录。如果只想分发 GUI 和控制台运行器以及编写测试所需的基本 nunit.framework.dll(并且没有模拟基础架构),那么所需的最少文件集是多少?
作为参考,NUnit 2.4.8 bin 目录如下所示:
- 插件/
- clr.bat
- 失败.jpg
- fit.dll
- ignored.jpg
- 加载测试程序集.dll
- 模拟程序集.dll
- nonamespace-assembly.dll
- notefixtures-assembly.dll
- nunit.core.dll
- nunit.core.extensions.dll
- nunit.core.interfaces.dll
- nunit.core.tests.dll
- nunit.exe
- nunit.exe.config
- nunit.extensions.tests.dll
- nunit.fixtures.dll
- nunit.fixtures.tests.dll
- nunit.framework.dll
- nunit.framework.extensions.dll
- nunit.framework.tests.dll
- nunit.framework.xml
- nunit.mocks.dll
- nunit.mocks.tests.dll
- nunit.uikit.dll
- nunit.uikit.tests.dll
- nunit.util.dll
- nunit.util.tests.dll
- nunit-console.exe
- nunit-console.exe.config
- nunit-console.tests.dll
- nunit-console-runner.dll
- nunit-console-x86.exe
- nunit-console-x86.exe.config
- NUnitFitTests.html
- nunit-gui.tests.dll
- nunit-gui-runner.dll
- NUnitTests.config
- NUnitTests.nunit
- nunit-x86.exe
- nunit-x86.exe.config
- runFile.exe
- runFile.exe.config
- 成功.jpg
- test-assembly.dll
- test-utilities.dll
- timing-tests.dll
【问题讨论】:
标签: unit-testing nunit