dart-sdk/tests/html/xsltprocessor_test.dart

32 lines
718 B
Dart

library XSLTProcessorTest;
import 'package:unittest/unittest.dart';
import 'package:unittest/html_individual_config.dart';
import 'dart:html';
main() {
useHtmlIndividualConfiguration();
group('supported', () {
test('supported', () {
expect(XsltProcessor.supported, true);
});
});
group('functional', () {
var isXsltProcessor =
predicate((x) => x is XsltProcessor, 'is an XsltProcessor');
var expectation = XsltProcessor.supported ? returnsNormally : throws;
test('constructorTest', () {
expect(() {
var processor = new XsltProcessor();
expect(processor, isNotNull);
expect(processor, isXsltProcessor);
}, expectation);
});
});
}