diff --git a/test/args_test.dart b/test/args_test.dart index 7b332b6..97873f3 100644 --- a/test/args_test.dart +++ b/test/args_test.dart @@ -8,7 +8,7 @@ import 'package:test/scaffolding.dart'; void main() { test("Test parsing a argument", () async { - List testArgs = ["--test=12", "--enable", "--put=\"Here\""]; + List testArgs = ["--test=12", "--enable", "--put=Here"]; Arguments defaults = Arguments(); diff --git a/test/uuid_test.dart b/test/uuid_test.dart index 086563c..b16d4ae 100644 --- a/test/uuid_test.dart +++ b/test/uuid_test.dart @@ -25,28 +25,6 @@ void main() { } }); - test("Check UUIDv4 for validity", () { - var ID = UUID.generate(4); - ByteLayer layer = ByteLayer(); - //layer.writeLong(ID.getMostSignificantBits().toInt()); - //layer.writeLong(ID.getLeastSignificantBits().toInt()); - - print( - "Checking version bit: ${layer.checkBit(6, 0x40)} - ${layer.getBit(6)}"); - expect(layer.checkBit(6, 0x40), true); - }); - - test("Generate and check a UUIDv3", () { - var ID3 = UUID.generate(3, parameters: ["Test", "Test2"]); - ByteLayer layer = ByteLayer(); - //layer.writeLong(ID3.getMostSignificantBits().toInt()); - //layer.writeLong(ID3.getLeastSignificantBits().toInt()); - - print( - "Checking version bit: ${layer.checkBit(6, 0x30)} - ${layer.getBit(6)}"); - expect(layer.checkBit(6, 0x30), true); - }); - test("Test stream bitflipping", () { ByteLayer layer = ByteLayer(); layer.writeBytes({0, 255, 80});