Add unit tests

This commit is contained in:
Oleksii Zghurskyi 2025-10-25 18:56:55 +03:00
commit bbb7f14650
38 changed files with 1040 additions and 515 deletions

View file

@ -46,7 +46,7 @@ public struct SQLiteError: Error, Equatable, CustomStringConvertible, Sendable {
/// name (`SQLiteError`), the numeric code, and the corresponding message, making it useful for
/// debugging, logging, or diagnostic displays.
public var description: String {
"\(Self.self) code: \(code) message: \(message)"
"\(Self.self)(\(code)): \(message)"
}
/// Creates a new error instance with the specified result code and message.