65fa576868
and re-enable the test. See https://code.google.com/p/dart/issues/detail?id=11191 R=sigmund@google.com Review URL: https://codereview.chromium.org//20101008 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25452 260f80e4-7a28-3924-810f-c04153c831b5
30 lines
827 B
Dart
30 lines
827 B
Dart
// Copyright (c) 2012, 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 unittestTests;
|
|
import 'package:unittest/unittest.dart';
|
|
|
|
import 'test_utils.dart';
|
|
|
|
main() {
|
|
initUtils();
|
|
|
|
group('Type Matchers', () {
|
|
test('isInstanceOf', () {
|
|
shouldFail(0, new isInstanceOf<String>('String'),
|
|
"Expected: an instance of String Actual: <0>");
|
|
shouldPass('cow', new isInstanceOf<String>('String'));
|
|
});
|
|
|
|
test('throwsA', () {
|
|
shouldPass(doesThrow, throwsA(equals('X')));
|
|
shouldFail(doesThrow, throwsA(equals('Y')),
|
|
matches("Expected: throws 'Y'.*"
|
|
"Actual: <Closure.*"
|
|
"Which: threw 'X'"));
|
|
});
|
|
});
|
|
}
|
|
|