|
1 | 1 | /*
|
2 |
| - * Copyright 2017-2020 ObjectBox Ltd. All rights reserved. |
| 2 | + * Copyright 2017-2023 ObjectBox Ltd. All rights reserved. |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
|
16 | 16 |
|
17 | 17 | package io.objectbox;
|
18 | 18 |
|
19 |
| -import io.objectbox.exception.DbFullException; |
20 |
| -import io.objectbox.exception.DbMaxDataSizeExceededException; |
21 |
| -import io.objectbox.exception.PagesCorruptException; |
22 |
| -import io.objectbox.model.ValidateOnOpenMode; |
23 |
| -import org.greenrobot.essentials.io.IoUtils; |
24 |
| -import org.junit.Before; |
25 |
| -import org.junit.Test; |
26 |
| - |
27 | 19 | import java.io.File;
|
28 |
| -import java.io.FileOutputStream; |
29 | 20 | import java.io.IOException;
|
30 |
| -import java.io.InputStream; |
31 | 21 | import java.nio.file.Files;
|
32 | 22 | import java.nio.file.Path;
|
33 | 23 | import java.util.HashSet;
|
|
36 | 26 | import java.util.stream.Collectors;
|
37 | 27 | import java.util.stream.Stream;
|
38 | 28 |
|
| 29 | +import io.objectbox.exception.DbFullException; |
| 30 | +import io.objectbox.exception.DbMaxDataSizeExceededException; |
| 31 | +import org.junit.Before; |
| 32 | +import org.junit.Test; |
| 33 | + |
39 | 34 | import static org.junit.Assert.assertEquals;
|
40 |
| -import static org.junit.Assert.assertNotNull; |
41 | 35 | import static org.junit.Assert.assertSame;
|
42 | 36 | import static org.junit.Assert.assertThrows;
|
43 | 37 | import static org.junit.Assert.assertTrue;
|
|
0 commit comments