├── .gitignore ├── README.md ├── bin ├── gen_test_results.flags ├── gen_test_results.sh └── which ├── doc ├── CHANGES-2.1.txt ├── README.txt ├── RELEASE_NOTES-2.1.0.txt ├── RELEASE_NOTES-2.1.1.txt ├── RELEASE_NOTES-2.1.2.txt ├── RELEASE_NOTES-2.1.3.txt ├── RELEASE_NOTES-2.1.4.txt ├── RELEASE_NOTES-2.1.5.txt ├── RELEASE_NOTES-2.1.6.txt ├── TODO.txt ├── coding_standards.txt ├── contributors.txt ├── design_doc.txt ├── lgpl-2.1.txt ├── rst2html.css ├── shunit2.html └── shunit2.txt ├── examples ├── equality_test.sh ├── lineno_test.sh ├── math.inc ├── math_test.sh ├── mkdir_test.sh └── party_test.sh ├── lib ├── shflags ├── shlib └── versions └── src ├── shunit2 ├── shunit2_test.sh ├── shunit2_test_asserts.sh ├── shunit2_test_failures.sh ├── shunit2_test_helpers ├── shunit2_test_macros.sh ├── shunit2_test_misc.sh └── shunit2_test_standalone.sh /.gitignore: -------------------------------------------------------------------------------- 1 | wiki/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/README.md -------------------------------------------------------------------------------- /bin/gen_test_results.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/bin/gen_test_results.flags -------------------------------------------------------------------------------- /bin/gen_test_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/bin/gen_test_results.sh -------------------------------------------------------------------------------- /bin/which: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/bin/which -------------------------------------------------------------------------------- /doc/CHANGES-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/CHANGES-2.1.txt -------------------------------------------------------------------------------- /doc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/README.txt -------------------------------------------------------------------------------- /doc/RELEASE_NOTES-2.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/RELEASE_NOTES-2.1.0.txt -------------------------------------------------------------------------------- /doc/RELEASE_NOTES-2.1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/RELEASE_NOTES-2.1.1.txt -------------------------------------------------------------------------------- /doc/RELEASE_NOTES-2.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/RELEASE_NOTES-2.1.2.txt -------------------------------------------------------------------------------- /doc/RELEASE_NOTES-2.1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/RELEASE_NOTES-2.1.3.txt -------------------------------------------------------------------------------- /doc/RELEASE_NOTES-2.1.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/RELEASE_NOTES-2.1.4.txt -------------------------------------------------------------------------------- /doc/RELEASE_NOTES-2.1.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/RELEASE_NOTES-2.1.5.txt -------------------------------------------------------------------------------- /doc/RELEASE_NOTES-2.1.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/RELEASE_NOTES-2.1.6.txt -------------------------------------------------------------------------------- /doc/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/TODO.txt -------------------------------------------------------------------------------- /doc/coding_standards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/coding_standards.txt -------------------------------------------------------------------------------- /doc/contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/contributors.txt -------------------------------------------------------------------------------- /doc/design_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/design_doc.txt -------------------------------------------------------------------------------- /doc/lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/lgpl-2.1.txt -------------------------------------------------------------------------------- /doc/rst2html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/rst2html.css -------------------------------------------------------------------------------- /doc/shunit2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/shunit2.html -------------------------------------------------------------------------------- /doc/shunit2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/doc/shunit2.txt -------------------------------------------------------------------------------- /examples/equality_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/examples/equality_test.sh -------------------------------------------------------------------------------- /examples/lineno_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/examples/lineno_test.sh -------------------------------------------------------------------------------- /examples/math.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/examples/math.inc -------------------------------------------------------------------------------- /examples/math_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/examples/math_test.sh -------------------------------------------------------------------------------- /examples/mkdir_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/examples/mkdir_test.sh -------------------------------------------------------------------------------- /examples/party_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/examples/party_test.sh -------------------------------------------------------------------------------- /lib/shflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/lib/shflags -------------------------------------------------------------------------------- /lib/shlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/lib/shlib -------------------------------------------------------------------------------- /lib/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/lib/versions -------------------------------------------------------------------------------- /src/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/src/shunit2 -------------------------------------------------------------------------------- /src/shunit2_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/src/shunit2_test.sh -------------------------------------------------------------------------------- /src/shunit2_test_asserts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/src/shunit2_test_asserts.sh -------------------------------------------------------------------------------- /src/shunit2_test_failures.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/src/shunit2_test_failures.sh -------------------------------------------------------------------------------- /src/shunit2_test_helpers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/src/shunit2_test_helpers -------------------------------------------------------------------------------- /src/shunit2_test_macros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/src/shunit2_test_macros.sh -------------------------------------------------------------------------------- /src/shunit2_test_misc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/src/shunit2_test_misc.sh -------------------------------------------------------------------------------- /src/shunit2_test_standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aetheric/shunit2/HEAD/src/shunit2_test_standalone.sh --------------------------------------------------------------------------------