Use the following function in the unit tests of each (sub)module ```Go func LibraryVersion() string { cStr := C.duckdb_library_version() defer Free(unsafe.Pointer(cStr)) return C.GoString(cStr) } ```