#************************************************************************* # # OpenOffice.org - a multi-platform office productivity suite # # $RCSfile: interfaceinheritance.tests,v $ # # $Revision: 1.4 $ # # last change: $Author: rt $ $Date: 2005-09-07 18:17:53 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. # # # GNU Lesser General Public License Version 2.1 # ============================================= # Copyright 2005 by Sun Microsystems, Inc. # 901 San Antonio Road, Palo Alto, CA 94303, USA # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License version 2.1, as published by the Free Software Foundation. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, # MA 02111-1307 USA # #************************************************************************* EXPECT FAILURE "interfaceinheritance.tests 1": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base {}; interface Derived { interface Base; interface Base; }; EXPECT FAILURE "interfaceinheritance.tests 2": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base {}; interface Derived { interface Base; [optional] interface Base; }; EXPECT FAILURE "interfaceinheritance.tests 3": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base {}; interface Derived { [optional] interface Base; interface Base; }; EXPECT FAILURE "interfaceinheritance.tests 4": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base {}; interface Derived { [optional] interface Base; [optional] interface Base; }; EXPECT FAILURE "interfaceinheritance.tests 5": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Derived { interface Base1; interface Base2; }; EXPECT FAILURE "interfaceinheritance.tests 6": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Derived { interface Base2; interface Base1; }; EXPECT FAILURE "interfaceinheritance.tests 7": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Derived { [optional] interface Base1; interface Base2; }; EXPECT FAILURE "interfaceinheritance.tests 8": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Derived { interface Base2; [optional] interface Base1; }; EXPECT SUCCESS "interfaceinheritance.tests 9": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Derived { interface Base1; [optional] interface Base2; }; EXPECT SUCCESS "interfaceinheritance.tests 10": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Derived { [optional] interface Base2; interface Base1; }; EXPECT SUCCESS "interfaceinheritance.tests 11": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Derived { [optional] interface Base1; [optional] interface Base2; }; EXPECT SUCCESS "interfaceinheritance.tests 12": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Derived { [optional] interface Base2; [optional] interface Base1; }; EXPECT SUCCESS "interfaceinheritance.tests 13": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2 { [optional] interface Base1; }; interface Derived { interface Base1; interface Base2; }; EXPECT SUCCESS "interfaceinheritance.tests 14": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2 { [optional] interface Base1; }; interface Derived { interface Base2; interface Base1; }; EXPECT FAILURE "interfaceinheritance.tests 15": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2 { [optional] interface Base1; }; interface Derived { [optional] interface Base1; interface Base2; }; EXPECT FAILURE "interfaceinheritance.tests 16": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2 { [optional] interface Base1; }; interface Derived { interface Base2; [optional] interface Base1; }; EXPECT SUCCESS "interfaceinheritance.tests 17": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2 { [optional] interface Base1; }; interface Derived { interface Base1; [optional] interface Base2; }; EXPECT SUCCESS "interfaceinheritance.tests 18": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2 { [optional] interface Base1; }; interface Derived { [optional] interface Base2; interface Base1; }; EXPECT SUCCESS "interfaceinheritance.tests 19": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2 { [optional] interface Base1; }; interface Derived { [optional] interface Base1; [optional] interface Base2; }; EXPECT SUCCESS "interfaceinheritance.tests 20": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2 { [optional] interface Base1; }; interface Derived { [optional] interface Base2; [optional] interface Base1; }; EXPECT SUCCESS "interfaceinheritance.tests 21": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Base3: Base1 {}; interface Derived { interface Base2; interface Base3; }; EXPECT SUCCESS "interfaceinheritance.tests 22": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Base3: Base1 {}; interface Derived { [optional] interface Base2; interface Base3; }; EXPECT SUCCESS "interfaceinheritance.tests 23": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Base3: Base1 {}; interface Derived { interface Base2; [optional] interface Base3; }; EXPECT SUCCESS "interfaceinheritance.tests 24": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base1 {}; interface Base2: Base1 {}; interface Base3: Base1 {}; interface Derived { [optional] interface Base2; [optional] interface Base3; }; EXPECT SUCCESS "interfaceinheritance.tests 25": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base {}; interface Derived { [optional] interface Base; }; EXPECT FAILURE "interfaceinheritance.tests 26": interface Base; interface Derived { interface Base; }; EXPECT FAILURE "interfaceinheritance.tests 27": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base; interface Derived { [optional] interface Base; }; EXPECT FAILURE "interfaceinheritance.tests 28": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base {}; typedef Base Hidden; interface Derived { interface Base; interface Hidden; }; EXPECT FAILURE "interfaceinheritance.tests 29": module com { module sun { module star { module uno { interface XInterface { void acquire(); }; }; }; }; }; interface Base {}; typedef Base Hidden; interface Derived { interface Hidden; interface Base; };