|
| 1 | +/* |
| 2 | + * Copyright 2025 ObjectBox Ltd. All rights reserved. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
1 | 17 | package io.objectbox.query;
|
2 | 18 |
|
3 |
| -import io.objectbox.TestEntity; |
4 |
| -import io.objectbox.TestEntity_; |
| 19 | +import org.junit.Ignore; |
5 | 20 | import org.junit.Test;
|
6 | 21 |
|
7 |
| -import javax.annotation.Nullable; |
8 | 22 | import java.util.ArrayList;
|
9 | 23 | import java.util.Arrays;
|
10 | 24 | import java.util.HashMap;
|
11 | 25 | import java.util.List;
|
12 | 26 | import java.util.Map;
|
13 | 27 |
|
| 28 | +import javax.annotation.Nullable; |
| 29 | + |
| 30 | +import io.objectbox.TestEntity; |
| 31 | +import io.objectbox.TestEntity_; |
| 32 | + |
| 33 | + |
14 | 34 | import static org.junit.Assert.assertEquals;
|
15 | 35 | import static org.junit.Assert.assertNotNull;
|
16 | 36 | import static org.junit.Assert.assertNull;
|
@@ -103,6 +123,7 @@ private TestEntity createFlexMapEntity(String s, boolean b, long l, float f, dou
|
103 | 123 | return entity;
|
104 | 124 | }
|
105 | 125 |
|
| 126 | + @Ignore("Broken due to flex map query API changes, see objectbox#1099") |
106 | 127 | @Test
|
107 | 128 | public void contains_stringObjectMap() {
|
108 | 129 | // Note: map keys and values can not be null, so no need to test. See FlexMapConverterTest.
|
|
0 commit comments