diff options
Diffstat (limited to 'unotest')
-rw-r--r-- | unotest/inc/unotest/bootstrapfixturebase.hxx | 3 | ||||
-rw-r--r-- | unotest/source/cpp/bootstrapfixturebase.cxx | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/unotest/inc/unotest/bootstrapfixturebase.hxx b/unotest/inc/unotest/bootstrapfixturebase.hxx index 6e9af912f40a..65899556910b 100644 --- a/unotest/inc/unotest/bootstrapfixturebase.hxx +++ b/unotest/inc/unotest/bootstrapfixturebase.hxx @@ -81,6 +81,9 @@ public: // return a Path to a given c-str path from the source directory ::rtl::OUString getPathFromSrc( const char *pPath ); + // return a URL to a given c-str path from the solver directory + ::rtl::OUString getURLFromSolver( const char *pPath ); + // return a Path to a given c-str path from the solver directory ::rtl::OUString getPathFromSolver( const char *pPath ); diff --git a/unotest/source/cpp/bootstrapfixturebase.cxx b/unotest/source/cpp/bootstrapfixturebase.cxx index d135992688ce..0c7c841f1d99 100644 --- a/unotest/source/cpp/bootstrapfixturebase.cxx +++ b/unotest/source/cpp/bootstrapfixturebase.cxx @@ -82,6 +82,11 @@ test::BootstrapFixtureBase::~BootstrapFixtureBase() return m_aSrcRootPath + rtl::OUString::createFromAscii( pPath ); } +::rtl::OUString test::BootstrapFixtureBase::getURLFromSolver( const char *pPath ) +{ + return m_aSolverRootURL + rtl::OUString::createFromAscii( pPath ); +} + ::rtl::OUString test::BootstrapFixtureBase::getPathFromSolver( const char *pPath ) { return m_aSolverRootPath + rtl::OUString::createFromAscii( pPath ); |