You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,11 +132,11 @@ Caused by: java.lang.UnsatisfiedLinkError: no libsqlite4java-osx-1.0.392 in java
132
132
SEVERE: [sqlite] SQLiteQueue[]: stopped abnormally, reincarnation is not possible for in-memory database
133
133
```
134
134
135
-
The example contains a simple `AwsDynamoDbHelper` class that can be used for initializing this property for DynamoDB at runtime, so it will work from both your IDE and from Gradle.
135
+
The example contains a simple [`AwsDynamoDbHelper`](src/test/java/io/redskap/java/aws/dynamodb/example/local/testing/AwsDynamoDbHelper.java) class that can be used for initializing this property for DynamoDB at runtime, so it will work from both your IDE and from Gradle.
136
136
137
-
You only need to call `AwsDynamoDbHelper.initSqLite()` before you plan to use the local database. If the property is already initialized, the call will skip initialization.
137
+
You only need to call [`AwsDynamoDbHelper#initSqLite()`](src/test/java/io/redskap/java/aws/dynamodb/example/local/testing/AwsDynamoDbHelper.java#L17) before you plan to use the local database. If the property is already initialized, the call will skip initialization.
138
138
139
-
There is an example test, that uses the local database. The test calls the initialization at the `@BeforeClass` setUp method: `io.redskap.java.aws.dynamodb.example.local.testing.SimpleCrudTest`
139
+
There is an example test, that uses the local database. The test calls the initialization at the `@BeforeClass` setUp method[`SimpleCrudTest`](src/test/java/io/redskap/java/aws/dynamodb/example/local/testing/SimpleCrudTest.java#L19)
140
140
141
141
## Build
142
142
@@ -168,4 +168,4 @@ distributed under the License is distributed on an "AS IS" BASIS,
168
168
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
169
169
See the License for the specific language governing permissions and
0 commit comments