10 lines
240 B
Dart
10 lines
240 B
Dart
|
import 'package:libac_dart/utils/DBIKC.dart';
|
||
|
import 'package:test/expect.dart';
|
||
|
import 'package:test/scaffolding.dart';
|
||
|
|
||
|
void main() {
|
||
|
test("DBIKC", () {
|
||
|
expect("KAZNIA", DoubleBreastedInterruptedKeyCipher.encode("RUBNIU"));
|
||
|
});
|
||
|
}
|