office-gobmx/idlc/test/parser/attribute.tests

232 lines
4.2 KiB
Text
Raw Normal View History

#*************************************************************************
#
# OpenOffice.org - a multi-platform office productivity suite
#
# $RCSfile: attribute.tests,v $
#
# $Revision: 1.4 $
#
# last change: $Author: kz $ $Date: 2006-11-06 14:41:01 $
#
# 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 SUCCESS "attribute.tests 1":
interface I1 {
[attribute] long a;
};
EXPECT SUCCESS "attribute.tests 2":
interface I1 {
[attribute] long a {};
};
EXPECT FAILURE "attribute.tests 3":
interface I1 {
[attribute] long a {
get raises ();
};
};
EXPECT SUCCESS "attribute.tests 4":
exception E1 {};
interface I1 {
[attribute] long a {
get raises (E1);
};
};
EXPECT SUCCESS "attribute.tests 5":
exception E1 {};
interface I1 {
[attribute] long a {
set raises (E1);
};
};
EXPECT SUCCESS "attribute.tests 6":
exception E1 {};
interface I1 {
[attribute] long a {
get raises (E1);
set raises (E1);
};
};
EXPECT SUCCESS "attribute.tests 7":
exception E1 {};
interface I1 {
[attribute] long a {
set raises (E1);
get raises (E1);
};
};
EXPECT FAILURE "attribute.tests 8":
exception E1 {};
interface I1 {
[attribute] long a {
get raises (E1);
get raises (E1);
};
};
EXPECT FAILURE "attribute.tests 9":
exception E1 {};
interface I1 {
void E1();
[attribute] long a {
get raises (E1);
};
};
EXPECT FAILURE "attribute.tests 10":
exception E1 {};
interface I1 {
[attribute] long E1 {
get raises (E1);
};
};
EXPECT SUCCESS "attribute.tests 11":
exception E1 {};
interface I1 {
[attribute] long a {
get raises (E1,E1);
};
};
EXPECT SUCCESS "attribute.tests 12":
exception E1 {};
interface I1 {
[attribute, readonly] long a {
get raises (E1);
};
};
EXPECT FAILURE "attribute.tests 13":
exception E1 {};
interface I1 {
[attribute, readonly] long a {
set raises (E1);
};
};
EXPECT FAILURE "attribute.tests 14":
interface I1 {
[] long a;
};
EXPECT SUCCESS "attribute.tests 15":
interface I1 {
[attribute] long a;
};
EXPECT FAILURE "attribute.tests 16":
interface I1 {
[attribute, property] long a;
};
EXPECT FAILURE "attribute.tests 17":
interface I1 {
[attribute, optional] long a;
};
EXPECT FAILURE "attribute.tests 18":
interface I1 {
[attribute, maybevoid] long a;
};
EXPECT FAILURE "attribute.tests 19":
interface I1 {
[attribute, constrained] long a;
};
EXPECT FAILURE "attribute.tests 20":
interface I1 {
[attribute, transient] long a;
};
EXPECT FAILURE "attribute.tests 21":
interface I1 {
[attribute, maybeambigious] long a;
};
EXPECT FAILURE "attribute.tests 22":
interface I1 {
[attribute, maybedefault] long a;
};
EXPECT FAILURE "attribute.tests 23":
interface I1 {
[attribute, removeable] long a;
};
EXPECT SUCCESS "attribute.tests 24":
interface I1 {
[attribute, bound] long a;
};
EXPECT SUCCESS "attribute.tests 25":
interface I1 {
[bound, attribute] long a;
};
EXPECT SUCCESS "attribute.tests 26":
interface I1 {
[attribute, readonly] long a;
};
EXPECT SUCCESS "attribute.tests 27":
interface I1 {
[attribute, bound, readonly] long a;
};