Refactor entire codebase and rewrite documentation
This commit is contained in:
parent
b4e9755c15
commit
8e471f2b9f
74 changed files with 3341 additions and 4085 deletions
|
|
@ -5,12 +5,12 @@ import DataLiteCore
|
|||
struct DataSQLiteRawRepresentableTests {
|
||||
@Test func testDataToSQLiteRawValue() {
|
||||
let data = Data([0x01, 0x02, 0x03])
|
||||
#expect(data.sqliteRawValue == .blob(data))
|
||||
#expect(data.sqliteValue == .blob(data))
|
||||
}
|
||||
|
||||
@Test func testSQLiteRawValueToData() {
|
||||
let data = Data([0x01, 0x02, 0x03])
|
||||
let rawValue = SQLiteRawValue.blob(data)
|
||||
let rawValue = SQLiteValue.blob(data)
|
||||
|
||||
#expect(Data(rawValue) == data)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue