11 lines
210 B
Dart
11 lines
210 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
matchWords();
|
|
}
|
|
|
|
void matchWords() {
|
|
test("try matching some words", () {
|
|
expect(RegExp(r"tiger").hasMatch("tigerfucker"), true);
|
|
});
|
|
}
|