在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 测试驱动开发-cpputest源码.zip

测试驱动开发-cpputest源码.zip

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:2.48M
  • 下载次数:3
  • 浏览次数:102
  • 发布时间:2021-12-09
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
测试驱动开发所使用的cpputest源码 及 示例代码。。。。。。。。。。。。。。。。。。。。。
【实例截图】
【核心代码】
4744300845401403012.zip
└── cpputest-master
├── appveyor.yml
├── AUTHORS
├── autogen.sh
├── build
│   ├── alltests.mmp
│   ├── bld.inf
│   ├── ComponentMakefile
│   ├── ComponentMakefileExampleParameters
│   ├── cpputest.mmp
│   ├── MakefileWorker.mk
│   └── StaticLibMakefile
├── builds
│   └── make-gcc-macport.sh
├── ChangeLog
├── cmake
│   ├── Modules
│   │   ├── CppUTestBuildTimeDiscoverTests.cmake
│   │   ├── CppUTestConfigurationOptions.cmake
│   │   ├── CppUTestNormalizeTestOutputLocation.cmake
│   │   ├── CppUTestWarningFlags.cmake
│   │   └── FindCXX11.cmake
│   └── Scripts
│   └── CppUTestBuildTimeDiscoverTests.cmake
├── CMakeLists.txt
├── config.h.cmake
├── configure.ac
├── COPYING
├── cpputest_build
├── CppUTestConfig.cmake.build.in
├── CppUTestConfig.cmake.install.in
├── CppUTest.dep
├── cpputest_doxy_gen.conf
├── CppUTest.dsp
├── CppUTest.dsw
├── CppUTest.mak
├── cpputest.pc.in
├── CppUTest.sln
├── CppUTest.vcproj
├── CppUTest.vcxproj
├── CppUTest_VS201x.sln
├── docs
│   └── WalkThrough_VS21010.docx
├── Doxyfile
├── examples
│   ├── AllTests
│   │   ├── AllTests.cpp
│   │   ├── AllTests.dsp
│   │   ├── AllTests.h
│   │   ├── AllTests.vcproj
│   │   ├── AllTests.vcxproj
│   │   ├── CircularBufferTest.cpp
│   │   ├── EventDispatcherTest.cpp
│   │   ├── FEDemoTest.cpp
│   │   ├── HelloTest.cpp
│   │   ├── MockDocumentationTest.cpp
│   │   ├── MockPrinter.h
│   │   ├── PrinterTest.cpp
│   │   └── RunAllTests.sh
│   ├── ApplicationLib
│   │   ├── ApplicationLib.dsp
│   │   ├── ApplicationLib.vcproj
│   │   ├── ApplicationLib.vcxproj
│   │   ├── CircularBuffer.cpp
│   │   ├── CircularBuffer.h
│   │   ├── EventDispatcher.cpp
│   │   ├── EventDispatcher.h
│   │   ├── ExamplesNewOverrides.h
│   │   ├── hello.c
│   │   ├── hello.h
│   │   ├── Printer.cpp
│   │   └── Printer.h
│   ├── CppUTestExample.dsw
│   ├── CppUTestExample_VS2008.sln
│   ├── CppUTestExample_VS201x.sln
│   ├── Makefile
│   └── README.txt
├── include
│   ├── CppUTest
│   │   ├── CommandLineArguments.h
│   │   ├── CommandLineTestRunner.h
│   │   ├── CppUTestConfig.h
│   │   ├── CppUTestGeneratedConfig.h
│   │   ├── JUnitTestOutput.h
│   │   ├── MemoryLeakDetector.h
│   │   ├── MemoryLeakDetectorMallocMacros.h
│   │   ├── MemoryLeakDetectorNewMacros.h
│   │   ├── MemoryLeakWarningPlugin.h
│   │   ├── PlatformSpecificFunctions_c.h
│   │   ├── PlatformSpecificFunctions.h
│   │   ├── SimpleMutex.h
│   │   ├── SimpleString.h
│   │   ├── StandardCLibrary.h
│   │   ├── TeamCityTestOutput.h
│   │   ├── TestFailure.h
│   │   ├── TestFilter.h
│   │   ├── TestHarness_c.h
│   │   ├── TestHarness.h
│   │   ├── TestMemoryAllocator.h
│   │   ├── TestOutput.h
│   │   ├── TestPlugin.h
│   │   ├── TestRegistry.h
│   │   ├── TestResult.h
│   │   ├── TestTestingFixture.h
│   │   ├── Utest.h
│   │   └── UtestMacros.h
│   ├── CppUTestExt
│   │   ├── CodeMemoryReportFormatter.h
│   │   ├── GMock.h
│   │   ├── GTestConvertor.h
│   │   ├── GTest.h
│   │   ├── IEEE754ExceptionsPlugin.h
│   │   ├── MemoryReportAllocator.h
│   │   ├── MemoryReporterPlugin.h
│   │   ├── MemoryReportFormatter.h
│   │   ├── MockActualCall.h
│   │   ├── MockCheckedActualCall.h
│   │   ├── MockCheckedExpectedCall.h
│   │   ├── MockExpectedCall.h
│   │   ├── MockExpectedCallsList.h
│   │   ├── MockFailure.h
│   │   ├── MockNamedValue.h
│   │   ├── MockSupport_c.h
│   │   ├── MockSupport.h
│   │   ├── MockSupportPlugin.h
│   │   └── OrderedTest.h
│   └── Platforms
│   └── c2000
│   └── stdint.h
├── m4
│   ├── acx_pthread.m4
│   └── m4_ax_prefix_config_h.m4
├── makeAndRun.bat
├── Makefile.am
├── Makefile_CppUTestExt
├── Makefile_using_MakefileWorker
├── makeVc6.bat
├── makeVS2008.bat
├── makeVS201x.bat
├── NEWS
├── platforms
│   ├── armcc
│   │   ├── Makefile
│   │   ├── README
│   │   └── TODO
│   ├── CCStudio
│   │   ├── CppUTestExtRunAllTests1.pjt
│   │   ├── CppUTestExtRunAllTests2.pjt
│   │   ├── CppUTest.pjt
│   │   ├── CppUTestRunAllTests1.pjt
│   │   ├── CppUTestRunAllTests2.pjt
│   │   ├── CppUTest.wks
│   │   ├── sim28335.cmd
│   │   ├── sim28335.gel
│   │   ├── sim2833x.cfg
│   │   └── tests
│   │   ├── CppUTest
│   │   │   └── AllTestsForTarget.cpp
│   │   └── CppUTestExt
│   │   └── AllTestsForTarget.cpp
│   ├── Dos
│   │   ├── ALLTESTS.BAT
│   │   ├── alltests.sh
│   │   ├── dosbox-0.74.conf
│   │   ├── Makefile
│   │   ├── README.txt
│   │   └── sources.mk
│   ├── Eclipse-Cygwin
│   │   ├── CppUTestExtTests.launch
│   │   ├── CppUTestTests.launch
│   │   └── README.md
│   ├── iar
│   │   ├── CppUTest.ewd
│   │   ├── CppUTest.ewp
│   │   ├── CppUTest.eww
│   │   ├── CppUTestExt.ewp
│   │   ├── CppUTestExtTest.ewp
│   │   ├── CppUTestExtTest.icf
│   │   ├── CppUTestTest.ewd
│   │   ├── CppUTestTest.ewp
│   │   ├── CppUTestTest.icf
│   │   └── tests
│   │   ├── AllTests.cpp
│   │   ├── AllTests.h
│   │   └── CppUTestExt
│   │   └── AllTests.cpp
│   └── IAR-STR912.zip
├── platforms_examples
│   ├── armcc
│   │   ├── AT91SAM7A3
│   │   │   ├── AT91SAM7A3.jflash
│   │   │   ├── AT91SAM7A3.launch
│   │   │   ├── HEAP.txt
│   │   │   ├── jlink_gdb.cmd
│   │   │   ├── LICENSE
│   │   │   ├── Makefile
│   │   │   ├── RAM.txt
│   │   │   ├── README
│   │   │   ├── ROM.sct
│   │   │   ├── STACK.txt
│   │   │   └── tests
│   │   │   └── main.cpp
│   │   ├── LPC1768
│   │   │   ├── cpputest_example_Default.launch
│   │   │   ├── jlink_gdb.cmd
│   │   │   ├── LPC1768.jflash
│   │   │   ├── README
│   │   │   ├── ROM.sct
│   │   │   └── tests
│   │   │   └── main.cpp
│   │   └── LPC1833
│   │   ├── FLASH.sct
│   │   ├── LPC1833.jflash
│   │   ├── src
│   │   │   └── dummy.c
│   │   └── tests
│   │   ├── main.cpp
│   │   └── test1.cpp
│   └── README
├── README
├── README_CppUTest_for_C.txt
├── README_InstallCppUTest.txt
├── README.md
├── README_UsersOfPriorVersions.txt
├── scripts
│   ├── appveyor_ci_build.ps1
│   ├── appveyor_ci_test.ps1
│   ├── appveyor_helpers.ps1
│   ├── checkForCppUTestEnvVariable.sh
│   ├── convertToUnity
│   │   ├── cpp_u_test_to_unity.rb
│   │   ├── cpp_u_test_to_unity_utils.rb
│   │   ├── cpp_u_test_to_unity_utils_tests.rb
│   │   ├── create_group_runner.rb
│   │   ├── create_unity_test_runner.rb
│   │   └── README.txt
│   ├── CppUnitTemplates
│   │   ├── ClassNameC.c
│   │   ├── ClassNameC.h
│   │   ├── ClassNameCMultipleInstance.c
│   │   ├── ClassNameCMultipleInstance.h
│   │   ├── ClassNameCMultipleInstanceTest.cpp
│   │   ├── ClassNameCPolymorphic.c
│   │   ├── ClassNameCPolymorphic.h
│   │   ├── ClassName.cpp
│   │   ├── ClassNameCTest.cpp
│   │   ├── ClassName.h
│   │   ├── ClassNameTest.cpp
│   │   ├── InterfaceCTest.cpp
│   │   ├── InterfaceTest.cpp
│   │   ├── MockClassNameC.c
│   │   ├── MockClassNameC.h
│   │   ├── MockClassName.h
│   │   └── ProjectTemplate
│   │   ├── include
│   │   │   └── util
│   │   │   └── ProjectBuildTime.h
│   │   ├── ProjectMakefile
│   │   ├── src
│   │   │   └── util
│   │   │   └── ProjectBuildTime.cpp
│   │   └── tests
│   │   ├── AllTests.cpp
│   │   └── util
│   │   └── ProjectBuildTimeTest.cpp
│   ├── filterGcov.sh
│   ├── generate_junit_report_ant.xml
│   ├── GenerateSrcFiles.sh
│   ├── InstallScripts.sh
│   ├── NewCBaseModule.sh
│   ├── NewCFunction.sh
│   ├── NewCInterface.sh
│   ├── NewCIoDriver.sh
│   ├── NewClass.sh
│   ├── NewCmiModule.sh
│   ├── NewCModule.sh
│   ├── NewHelp.sh
│   ├── NewInterface.sh
│   ├── NewLibrary.sh
│   ├── NewPackageDirs.sh
│   ├── NewProject.sh
│   ├── README.txt
│   ├── RefactorRenameIncludeFile.sh
│   ├── reformat.sh
│   ├── ReleaseCppUTest.sh
│   ├── squeeze.sh
│   ├── svnignore.txt
│   ├── templates
│   │   ├── ClassNameC.c
│   │   ├── ClassNameC.h
│   │   ├── ClassNameCIoDriver.c
│   │   ├── ClassNameCIoDriver.h
│   │   ├── ClassNameCIoDriverTest.cpp
│   │   ├── ClassNameCMultipleInstance.c
│   │   ├── ClassNameCMultipleInstance.h
│   │   ├── ClassNameCMultipleInstanceTest.cpp
│   │   ├── ClassNameCPolymorphic.c
│   │   ├── ClassNameCPolymorphic.h
│   │   ├── ClassName.cpp
│   │   ├── ClassNameCTest.cpp
│   │   ├── ClassName.h
│   │   ├── ClassNameTest.cpp
│   │   ├── FunctionNameC.c
│   │   ├── FunctionNameC.h
│   │   ├── FunctionNameCTest.cpp
│   │   ├── InterfaceCTest.cpp
│   │   ├── InterfaceTest.cpp
│   │   ├── MockClassNameC.c
│   │   ├── MockClassNameC.h
│   │   ├── MockClassName.h
│   │   └── ProjectTemplate
│   │   ├── include
│   │   │   └── util
│   │   │   └── ProjectBuildTime.h
│   │   ├── Project.cproject
│   │   ├── ProjectMakefile
│   │   ├── Project.project
│   │   ├── src
│   │   │   └── util
│   │   │   └── ProjectBuildTime.cpp
│   │   └── tests
│   │   ├── AllTests.cpp
│   │   └── util
│   │   └── ProjectBuildTimeTest.cpp
│   ├── travis_ci_after.sh
│   ├── travis_ci_build.sh
│   ├── UnityTemplates
│   │   ├── ClassNameCIoDriverTest.cpp
│   │   ├── ClassNameCMultipleInstanceTest.cpp
│   │   ├── ClassNameCTest.cpp
│   │   ├── FunctionNameCTest.cpp
│   │   └── InterfaceCTest.cpp
│   ├── VS2010Templates
│   │   ├── CppUTest_VS2010.props
│   │   └── README.txt
│   └── zipExclude.txt
├── src
│   ├── CppUTest
│   │   ├── CMakeIntegration-README.md
│   │   ├── CMakeLists.txt
│   │   ├── CommandLineArguments.cpp
│   │   ├── CommandLineTestRunner.cpp
│   │   ├── JUnitTestOutput.cpp
│   │   ├── MemoryLeakDetector.cpp
│   │   ├── MemoryLeakWarningPlugin.cpp
│   │   ├── SimpleMutex.cpp
│   │   ├── SimpleString.cpp
│   │   ├── TeamCityTestOutput.cpp
│   │   ├── TestFailure.cpp
│   │   ├── TestFilter.cpp
│   │   ├── TestHarness_c.cpp
│   │   ├── TestMemoryAllocator.cpp
│   │   ├── TestOutput.cpp
│   │   ├── TestPlugin.cpp
│   │   ├── TestRegistry.cpp
│   │   ├── TestResult.cpp
│   │   ├── TestTestingFixture.cpp
│   │   └── Utest.cpp
│   ├── CppUTestExt
│   │   ├── CMakeLists.txt
│   │   ├── CodeMemoryReportFormatter.cpp
│   │   ├── IEEE754ExceptionsPlugin.cpp
│   │   ├── MemoryReportAllocator.cpp
│   │   ├── MemoryReporterPlugin.cpp
│   │   ├── MemoryReportFormatter.cpp
│   │   ├── MockActualCall.cpp
│   │   ├── MockExpectedCall.cpp
│   │   ├── MockExpectedCallsList.cpp
│   │   ├── MockFailure.cpp
│   │   ├── MockNamedValue.cpp
│   │   ├── MockSupport_c.cpp
│   │   ├── MockSupport.cpp
│   │   ├── MockSupportPlugin.cpp
│   │   └── OrderedTest.cpp
│   └── Platforms
│   ├── armcc
│   │   └── UtestPlatform.cpp
│   ├── C2000
│   │   └── UtestPlatform.cpp
│   ├── Dos
│   │   └── UtestPlatform.cpp
│   ├── Gcc
│   │   └── UtestPlatform.cpp
│   ├── GccNoStdC
│   │   └── UtestPlatform.cpp
│   ├── Iar
│   │   └── UtestPlatform.cpp
│   ├── Keil
│   │   └── UtestPlatform.cpp
│   ├── Symbian
│   │   ├── README_Symbian.txt
│   │   ├── SymbianMemoryLeakWarning.cpp
│   │   └── UtestPlatform.cpp
│   └── VisualCpp
│   └── UtestPlatform.cpp
├── tests
│   ├── AllTests.dep
│   ├── AllTests.dsp
│   ├── AllTests.mak
│   ├── AllTests.vcproj
│   ├── AllTests.vcxproj
│   ├── CppUTest
│   │   ├── AllocationInCFile.c
│   │   ├── AllocationInCFile.h
│   │   ├── AllocationInCppFile.cpp
│   │   ├── AllocationInCppFile.h
│   │   ├── AllocLetTestFree.c
│   │   ├── AllocLetTestFree.h
│   │   ├── AllocLetTestFreeTest.cpp
│   │   ├── AllTests.cpp
│   │   ├── AllTests.h
│   │   ├── CheatSheetTest.cpp
│   │   ├── CMakeLists.txt
│   │   ├── CommandLineArgumentsTest.cpp
│   │   ├── CommandLineTestRunnerTest.cpp
│   │   ├── JUnitOutputTest.cpp
│   │   ├── MemoryLeakDetectorTest.cpp
│   │   ├── MemoryLeakWarningTest.cpp
│   │   ├── MemoryOperatorOverloadTest.cpp
│   │   ├── PluginTest.cpp
│   │   ├── PreprocessorTest.cpp
│   │   ├── SetPluginTest.cpp
│   │   ├── SimpleMutexTest.cpp
│   │   ├── SimpleStringTest.cpp
│   │   ├── TeamCityOutputTest.cpp
│   │   ├── TestFailureNaNTest.cpp
│   │   ├── TestFailureTest.cpp
│   │   ├── TestFilterTest.cpp
│   │   ├── TestHarness_cTestCFile.c
│   │   ├── TestHarness_cTest.cpp
│   │   ├── TestInstallerTest.cpp
│   │   ├── TestMemoryAllocatorTest.cpp
│   │   ├── TestOutputTest.cpp
│   │   ├── TestRegistryTest.cpp
│   │   ├── TestResultTest.cpp
│   │   ├── TestUTestMacro.cpp
│   │   ├── TestUTestStringMacro.cpp
│   │   ├── UtestPlatformTest.cpp
│   │   └── UtestTest.cpp
│   ├── CppUTestExt
│   │   ├── AllTests.cpp
│   │   ├── CMakeLists.txt
│   │   ├── CodeMemoryReporterTest.cpp
│   │   ├── ExpectedFunctionsListTest.cpp
│   │   ├── GMockTest.cpp
│   │   ├── GTest1Test.cpp
│   │   ├── GTest2ConvertorTest.cpp
│   │   ├── IEEE754PluginTest_c.c
│   │   ├── IEEE754PluginTest_c.h
│   │   ├── IEEE754PluginTest.cpp
│   │   ├── MemoryReportAllocatorTest.cpp
│   │   ├── MemoryReporterPluginTest.cpp
│   │   ├── MemoryReportFormatterTest.cpp
│   │   ├── MockActualCallTest.cpp
│   │   ├── MockCallTest.cpp
│   │   ├── MockCheatSheetTest.cpp
│   │   ├── MockComparatorCopierTest.cpp
│   │   ├── MockExpectedCallTest.cpp
│   │   ├── MockFailureReporterForTest.cpp
│   │   ├── MockFailureReporterForTest.h
│   │   ├── MockFailureTest.cpp
│   │   ├── MockHierarchyTest.cpp
│   │   ├── MockNamedValueTest.cpp
│   │   ├── MockParameterTest.cpp
│   │   ├── MockPluginTest.cpp
│   │   ├── MockReturnValueTest.cpp
│   │   ├── MockStrictOrderTest.cpp
│   │   ├── MockSupport_cTestCFile.c
│   │   ├── MockSupport_cTestCFile.h
│   │   ├── MockSupport_cTest.cpp
│   │   ├── MockSupportTest.cpp
│   │   └── OrderedTestTest.cpp
│   └── RunAllTests.sh
└── valgrind.suppressions

73 directories, 401 files

标签:

实例下载地址

测试驱动开发-cpputest源码.zip

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警