diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-11-09 05:54:59 +0100 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-11-09 06:36:45 +0100 |
commit | a071a29d4f7e8065a36a313027a007edac102e20 (patch) | |
tree | 3e6495d3988a3efa55f2034ffc194dcedd875d85 /include | |
parent | e937995ca3718042efabaf04a5161c0c76107b9c (diff) |
UnoApiTest don't require Calc
There is no reason for the generic UnoApiTest to require Calc
specifically. Calc tests can/should instantiate a Calc instance.
We can create a CalcUnoApiTest for that that inherits from
UnoApiTest; however this does not seem necessary, "make sc.clean"
succeeds.
Anyway, the ScGlobals::ensure mentioned in the comment does not
seem to exist.
This allows us to eliminate some code duplication in tests
that were reimplementing UnoApiTest minus the Calc instantiation.
Change-Id: I37bea9df41e3960df0458fe689cf6c046a243617
Diffstat (limited to 'include')
-rw-r--r-- | include/test/unoapi_test.hxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/test/unoapi_test.hxx b/include/test/unoapi_test.hxx index ee83689bc06d..0555472f1778 100644 --- a/include/test/unoapi_test.hxx +++ b/include/test/unoapi_test.hxx @@ -30,7 +30,6 @@ protected: private: - css::uno::Reference<css::uno::XInterface> m_xCalcComponent; OUString m_aBaseString; }; |