| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 library touch_list_test; | |
| 6 import '../../pkg/unittest/lib/unittest.dart'; | |
| 7 import '../../pkg/unittest/lib/html_individual_config.dart'; | |
| 8 import 'dart:html'; | |
| 9 | |
| 10 main() { | |
| 11 useHtmlIndividualConfiguration(); | |
| 12 | |
| 13 group('supported', () { | |
| 14 test('supported', () { | |
| 15 expect(TouchList.supported, true); | |
| 16 }); | |
| 17 }); | |
| 18 | |
| 19 group('functional', () { | |
| 20 test('touchlist constructor', () { | |
| 21 if (TouchList.supported) { | |
| 22 var list = new TouchList(); | |
| 23 expect(list, isNotNull); | |
| 24 expect(list is TouchList, true); | |
| 25 } | |
| 26 }); | |
| 27 }); | |
| 28 } | |
| OLD | NEW |