tests: fix blocking semantic in DBusProxyTest
[profile/ivi/common-api-dbus-runtime.git] / src / test / test-predefined-types.fidl
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 package commonapi.tests
5
6 typeCollection PredefinedTypeCollection {
7         typedef TestUInt8 is UInt8
8         typedef TestUInt16 is UInt16
9         typedef TestUInt32 is UInt32
10         typedef TestUInt64 is UInt64
11         typedef TestInt8 is Int8
12         typedef TestInt16 is Int16
13         typedef TestInt32 is Int32
14         typedef TestInt64 is Int64
15         typedef TestBoolean is Boolean
16         typedef TestByteBuffer is ByteBuffer
17         typedef TestDouble is Double
18         typedef TestFloat is Float
19         typedef TestString is String
20 }
21
22