Files
sdk/tests/html/xsltprocessor_test.dart
T
2012-09-15 01:21:41 +00:00

16 lines
357 B
Dart

#library('XSLTProcessorTest');
#import('../../pkg/unittest/unittest.dart');
#import('../../pkg/unittest/html_config.dart');
#import('dart:html');
main() {
useHtmlConfiguration();
test('constructorTest', () {
var processor = new XSLTProcessor();
Expect.isTrue(processor != null);
Expect.isTrue(processor is XSLTProcessor);
});
}