Fix null UUIDs
This commit is contained in:
parent
1024c4dbd7
commit
960cf0d789
3 changed files with 9 additions and 2 deletions
|
@ -75,4 +75,11 @@ void main() {
|
|||
|
||||
expect(ID3.toString(), asString);
|
||||
});
|
||||
|
||||
test("Null UUID", () {
|
||||
var expected = "00000000-0000-0000-0000-000000000000";
|
||||
var actual = UUID.ZERO.toString();
|
||||
|
||||
expect(actual, expected);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue