Update ooo320-m1
[ooovba.git] / comphelper / qa / test_weakbag.cxx
blob756925a16be541813a065fc5b084be80c458f187
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: test_weakbag.cxx,v $
10 * $Revision: 1.3 $
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 #include "precompiled_comphelper.hxx"
32 #include "sal/config.h"
34 #include "com/sun/star/uno/Reference.hxx"
35 #include "com/sun/star/uno/XInterface.hpp"
36 #include "comphelper/weakbag.hxx"
37 #include "cppuhelper/weak.hxx"
38 #include "cppunit/simpleheader.hxx"
40 namespace {
42 namespace css = com::sun::star;
44 class Test: public CppUnit::TestFixture {
45 public:
46 void test() {
47 css::uno::Reference< css::uno::XInterface > ref1(new cppu::OWeakObject);
48 css::uno::Reference< css::uno::XInterface > ref2(new cppu::OWeakObject);
49 css::uno::Reference< css::uno::XInterface > ref3(new cppu::OWeakObject);
50 comphelper::WeakBag< css::uno::XInterface > bag;
51 bag.add(ref1);
52 bag.add(ref1);
53 bag.add(ref2);
54 bag.add(ref2);
55 ref1.clear();
56 bag.add(ref3);
57 ref3.clear();
58 CPPUNIT_ASSERT_MESSAGE("remove first ref2", bag.remove() == ref2);
59 CPPUNIT_ASSERT_MESSAGE("remove second ref2", bag.remove() == ref2);
60 CPPUNIT_ASSERT_MESSAGE("remove first null", !bag.remove().is());
61 CPPUNIT_ASSERT_MESSAGE("remove second null", !bag.remove().is());
64 CPPUNIT_TEST_SUITE(Test);
65 CPPUNIT_TEST(test);
66 CPPUNIT_TEST_SUITE_END();
69 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(Test, "alltests");
73 NOADDITIONAL;