Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / idlc / test / parser / attribute.tests
blobbecd688b8c79d8fc7bfe175362b72ea8cc961a6a
2 # This file is part of the LibreOffice project.
4 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 # This file incorporates work covered by the following license notice:
10 #   Licensed to the Apache Software Foundation (ASF) under one or more
11 #   contributor license agreements. See the NOTICE file distributed
12 #   with this work for additional information regarding copyright
13 #   ownership. The ASF licenses this file to you under the Apache
14 #   License, Version 2.0 (the "License"); you may not use this file
15 #   except in compliance with the License. You may obtain a copy of
16 #   the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 EXPECT SUCCESS "attribute.tests 1":
20 interface I1 {
21     [attribute] long a;
25 EXPECT SUCCESS "attribute.tests 2":
26 interface I1 {
27     [attribute] long a {};
31 EXPECT FAILURE "attribute.tests 3":
32 interface I1 {
33     [attribute] long a {
34         get raises ();
35     };
39 EXPECT SUCCESS "attribute.tests 4":
40 exception E1 {};
41 interface I1 {
42     [attribute] long a {
43         get raises (E1);
44     };
48 EXPECT SUCCESS "attribute.tests 5":
49 exception E1 {};
50 interface I1 {
51     [attribute] long a {
52         set raises (E1);
53     };
57 EXPECT SUCCESS "attribute.tests 6":
58 exception E1 {};
59 interface I1 {
60     [attribute] long a {
61         get raises (E1);
62         set raises (E1);
63     };
67 EXPECT SUCCESS "attribute.tests 7":
68 exception E1 {};
69 interface I1 {
70     [attribute] long a {
71         set raises (E1);
72         get raises (E1);
73     };
77 EXPECT FAILURE "attribute.tests 8":
78 exception E1 {};
79 interface I1 {
80     [attribute] long a {
81         get raises (E1);
82         get raises (E1);
83     };
87 EXPECT FAILURE "attribute.tests 9":
88 exception E1 {};
89 interface I1 {
90     void E1();
91     [attribute] long a {
92         get raises (E1);
93     };
97 EXPECT FAILURE "attribute.tests 10":
98 exception E1 {};
99 interface I1 {
100     [attribute] long E1 {
101         get raises (E1);
102     };
106 EXPECT SUCCESS "attribute.tests 11":
107 exception E1 {};
108 interface I1 {
109     [attribute] long a {
110         get raises (E1,E1);
111     };
115 EXPECT SUCCESS "attribute.tests 12":
116 exception E1 {};
117 interface I1 {
118     [attribute, readonly] long a {
119         get raises (E1);
120     };
124 EXPECT FAILURE "attribute.tests 13":
125 exception E1 {};
126 interface I1 {
127     [attribute, readonly] long a {
128         set raises (E1);
129     };
133 EXPECT FAILURE "attribute.tests 14":
134 interface I1 {
135     [] long a;
139 EXPECT SUCCESS "attribute.tests 15":
140 interface I1 {
141     [attribute] long a;
145 EXPECT FAILURE "attribute.tests 16":
146 interface I1 {
147     [attribute, property] long a;
151 EXPECT FAILURE "attribute.tests 17":
152 interface I1 {
153     [attribute, optional] long a;
157 EXPECT FAILURE "attribute.tests 18":
158 interface I1 {
159     [attribute, maybevoid] long a;
163 EXPECT FAILURE "attribute.tests 19":
164 interface I1 {
165     [attribute, constrained] long a;
169 EXPECT FAILURE "attribute.tests 20":
170 interface I1 {
171     [attribute, transient] long a;
175 EXPECT FAILURE "attribute.tests 21":
176 interface I1 {
177     [attribute, maybeambigious] long a;
181 EXPECT FAILURE "attribute.tests 22":
182 interface I1 {
183     [attribute, maybedefault] long a;
187 EXPECT FAILURE "attribute.tests 23":
188 interface I1 {
189     [attribute, removeable] long a;
193 EXPECT SUCCESS "attribute.tests 24":
194 interface I1 {
195     [attribute, bound] long a;
199 EXPECT SUCCESS "attribute.tests 25":
200 interface I1 {
201     [bound, attribute] long a;
205 EXPECT SUCCESS "attribute.tests 26":
206 interface I1 {
207     [attribute, readonly] long a;
211 EXPECT SUCCESS "attribute.tests 27":
212 interface I1 {
213     [attribute, bound, readonly] long a;