diff options
| author | 2014-02-17 10:35:06 +0000 | |
|---|---|---|
| committer | 2014-02-17 10:35:06 +0000 | |
| commit | 2c3458dbda97b70158ee7ef22d13ce473a2a2147 (patch) | |
| tree | b6b7eb8eba23a5c2723518da99c03bf47b97f58a /test/Transaction/InstanceFieldsTest.java | |
| parent | 5a3f55ad9519e87c0d3bbddaf3d8a186a887a79b (diff) | |
| parent | d2fe10a3a34af171bf1631219cd2d6ff6b7778b5 (diff) | |
Merge "Remove blacklist"
Diffstat (limited to 'test/Transaction/InstanceFieldsTest.java')
| -rw-r--r-- | test/Transaction/InstanceFieldsTest.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/Transaction/InstanceFieldsTest.java b/test/Transaction/InstanceFieldsTest.java new file mode 100644 index 0000000000..38a44d2654 --- /dev/null +++ b/test/Transaction/InstanceFieldsTest.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +public class InstanceFieldsTest { + public boolean booleanField; + public byte byteField; + public char charField; + public short shortField; + public int intField; + public long longField; + public float floatField; + public double doubleField; + public Object objectField; +} |