assertj-db
assertj-db copied to clipboard
Assertions for database
Add posibility to add a condition object in the hasValues method on row asserts (closes #110).
Is there a way to specify connection / query timeout while using assertj db ?
I trying to check the values inserted on a table where a field is of the type `jsonb`. When I run something like this: ```java assertThat(eventsTable) .row(0) .value("data").isEqualTo("{\"key\": \"value\"}"); ```...
I need assertions for checking database structure. E.g. I want to check if specific table exists in database. Proposed assertions: `assertThat(table).exists();` or `assertThat(source).tableExists("name");` Additionally it would be nice to have...
if the column type is TINYINT, the valueType of the column is mapped to Boolean, when I getValue().toString(), the value is true or false, I want to the value will...
Hi, I used Changes(Table) to init changes, and there are nearly 150,000 records in a table, I just changed one record.I used setStartPointNow() and setEndPointNow() to monitor the changes. when...
Dear AssertJ-DB team, Dear Joel, I found one of my friends wrapping Table to allow for a "data reload feature". As I understand the JavaDoc of that class, the intended...
On the same idea than #10 (https://github.com/joel-costigliola/assertj-db/issues/10), write suggestions of assertions based on DBUnit assertions to help a migration
Suppose that the developer using assertJ-DB is writing a test. The DAO is already written. The developer check the result in the test database after the first test run. The...