| // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| library dartdoc.resource_loader_test; |
| |
| import 'package:analyzer/file_system/physical_file_system.dart'; |
| import 'package:dartdoc/src/generator/resource_loader.dart'; |
| import 'package:test/test.dart'; |
| |
| void main() { |
| group('Resource Loader', () { |
| var resourceProvider = PhysicalResourceProvider(); |
| |
| test('load from packages', () async { |
| var contents = await resourceProvider |
| .loadResourceAsString('package:dartdoc/templates/html/index.html'); |
| expect(contents, isNotNull); |
| }); |
| |
| test('throws if non-package', () async { |
| expect(resourceProvider.loadResourceAsString('wefoij:something'), |
| throwsArgumentError); |
| }); |
| }); |
| } |