blob: a6f624699cf7f3da4127cb98d142c6c185e3471c [file] [log] [blame]
library DOMParserTest;
import '../../pkg/unittest/lib/unittest.dart';
import '../../pkg/unittest/lib/html_config.dart';
import 'dart:html';
main() {
useHtmlConfiguration();
var isDomParser = predicate((x) => x is DomParser, 'is a DomParser');
test('constructorTest', () {
var ctx = new DomParser();
expect(ctx, isNotNull);
expect(ctx, isDomParser);
});
}