update dev300-m58
[ooovba.git] / cppu / test / Environment.test.cxx
blob7bef425bc52a24ed5aecb1af4ef3bcee420a1735
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: Environment.test.cxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // Test for uno/environment.hxx respectively com::sun::star::uno::Environment
33 #include "uno/environment.hxx"
34 #include "uno/lbnames.h"
35 #include "sal/main.h"
37 #include <iostream>
40 using namespace com::sun::star;
42 static rtl::OUString s_comment;
44 static void s_test__constructor_oustring_context(void)
46 s_comment += rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\ts_test__constructor_outstring_context\n"));
48 uno::Environment environment(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO)), NULL);
50 if (!environment.get())
51 s_comment += rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\t\tcouldn't get an Environment - FAILURE\n"));
54 SAL_IMPLEMENT_MAIN_WITH_ARGS(/*argc*/, argv)
56 s_test__constructor_oustring_context();
59 int ret;
60 if (s_comment.indexOf(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("FAILURE"))) == -1)
62 s_comment += rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("TESTS PASSED\n"));
63 ret = 0;
65 else
67 s_comment += rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("TESTS _NOT_ PASSED\n"));
68 ret = -1;
71 std::cerr
72 << argv[0]
73 << std::endl
74 << rtl::OUStringToOString(s_comment, RTL_TEXTENCODING_ASCII_US).getStr()
75 << std::endl;
77 return ret;