mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
11 lines
191 B
Dart
11 lines
191 B
Dart
import 'dart:sky' as sky;
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
test("createText(null) shouldn't crash", () {
|
|
var doc = new sky.Document();
|
|
doc.createText(null);
|
|
});
|
|
}
|