diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2006-04-28 16:47:01 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2006-04-28 16:47:01 +0000 |
| commit | 018fe5a60c309a2eebd42c3385401d1dc6ba8435 (patch) | |
| tree | 0e662200eaf1a5b33426927338f315ed8a0ca55f /src/dir-util-test.h | |
| parent | Adding unit test for verbs. (diff) | |
| download | inkscape-018fe5a60c309a2eebd42c3385401d1dc6ba8435.tar.gz inkscape-018fe5a60c309a2eebd42c3385401d1dc6ba8435.zip | |
Replaced two tests with CxxTest versions.
(bzr r605)
Diffstat (limited to 'src/dir-util-test.h')
| -rw-r--r-- | src/dir-util-test.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/dir-util-test.h b/src/dir-util-test.h new file mode 100644 index 000000000..e2f0f8ed8 --- /dev/null +++ b/src/dir-util-test.h @@ -0,0 +1,48 @@ + +#ifndef SEEN_DIR_UTIL_TEST_H +#define SEEN_DIR_UTIL_TEST_H + +#include <cxxtest/TestSuite.h> + +#include "dir-util.h" + +class DirUtilTest : public CxxTest::TestSuite +{ +public: + void testBase() + { + char const* cases[][3] = { + {"/foo/bar", "/foo", "bar"}, + {"/foo/barney", "/foo/bar", "/foo/barney"}, + {"/foo/bar/baz", "/foo/", "bar/baz"}, + {"/foo/bar/baz", "/", "foo/bar/baz"}, + {"/foo/bar/baz", "/foo/qux", "/foo/bar/baz"}, + {"/foo", NULL, "/foo"} + }; + + for ( size_t i = 0; i < G_N_ELEMENTS(cases); i++ ) + { + char const* result = sp_relative_path_from_path( cases[i][0], cases[i][1] ); + TS_ASSERT( result ); + TS_ASSERT( cases[i][2] ); + if ( result && cases[i][2] ) + { + TS_ASSERT_EQUALS( std::string(result), std::string(cases[i][2]) ); + } + } + } + +}; + +#endif // SEEN_DIR_UTIL_TEST_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : |
