9 lines
250 B
Dart
9 lines
250 B
Dart
import 'package:libac_dart/utils/Hashing.dart';
|
|
import 'package:test/expect.dart';
|
|
import 'package:test/scaffolding.dart';
|
|
|
|
void main() {
|
|
test("Test md5", () {
|
|
expect(Hashing.md5Hash("Hello World"), "b10a8db164e0754105b7a99be72e3fe5");
|
|
});
|
|
}
|