blob: 7e70cf0d7bddc52cd33ebb22ee7031a9ada949dc [file] [log] [blame]
#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);
});
}