tree: 58d18ca2475a04808a45a76bfc9a936ff939ffc4 [path history] [tgz]
  1. chunks/
  2. dissect-wireshark/
  3. dump/
  4. pib/
  5. ping/
  6. boost-test.hpp
  7. identity-management-fixture.cpp
  8. identity-management-fixture.hpp
  9. main.cpp
  10. README.md
  11. test-case.t.cpp.sample
  12. test-common.cpp
  13. test-common.hpp
  14. wscript
tests/README.md

ndn-tool unit tests

Assumptions

Unit tests for a tool foo should be placed in the folder foo and build script for the tool should define foo-objects that includes all object files for the tool, except object files defining main function.

For example,

bld(features='cxx',
    name='tool-subtool-objects',
    source=bld.path.ant_glob('subtool/*.cpp', excl='subtool/main.cpp'),
    use='core-objects')

bld(features='cxx cxxprogram',
    target='../../bin/subtool',
    source='subtool/main.cpp',
    use='tool-subtool-objects')

bld(name='tool-objects',
    use='tool-subtool-objects')