diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-03-05 11:11:41 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-03-05 11:14:55 +0100 |
commit | 9a7ca779cdd3007df4e1425d296ba83091a4044d (patch) | |
tree | 7ddf34f70998b6cc1c3c97dbfc87c9f5b3cfd999 /include | |
parent | 7691532a89a94120c220f77e8cc6c42615e3d7c4 (diff) |
move the export validation code to test
Change-Id: Iaafe30a1095bd5b6dac3637c394818ba8bd848ce
Diffstat (limited to 'include')
-rw-r--r-- | include/test/bootstrapfixture.hxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/test/bootstrapfixture.hxx b/include/test/bootstrapfixture.hxx index 3896010eec1e..f7e40e6af101 100644 --- a/include/test/bootstrapfixture.hxx +++ b/include/test/bootstrapfixture.hxx @@ -27,6 +27,12 @@ namespace test { +enum ValidationFormat +{ + OOXML, + ODF +}; + // Class to do lots of heavy-lifting UNO & environment // bootstrapping for unit tests, such that we can use // almost an entire LibreOffice during compile - so @@ -47,6 +53,8 @@ public: virtual void setUp(); virtual void tearDown(); + + static void validate(const OUString& rURL, ValidationFormat); }; } |