Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3303)

Unified Diff: client/tests/client/observable/observable_tests.dart

Issue 9382027: Move client/{base, observable, layout, touch, util, view} to samples/ui_lib . (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/tests/client/observable/observable_tests.dart
===================================================================
--- client/tests/client/observable/observable_tests.dart (revision 4144)
+++ client/tests/client/observable/observable_tests.dart (working copy)
@@ -1,48 +0,0 @@
-// Copyright (c) 2011, 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('observable_tests');
-
-#import('dart:html');
-#import('../../../observable/observable.dart');
-#import('../../../testing/unittest/unittest.dart');
-
-#source('AbstractObservableTests.dart');
-#source('ChangeEventTests.dart');
-#source('EventBatchTests.dart');
-#source('ObservableListTests.dart');
-#source('ObservableValueTests.dart');
-
-void main() {
- group('AbstractObservable', testAbstractObservable);
- group('ChangeEvent', testChangeEvent);
- group('EventBatch', testEventBatch);
- group('ObservableList', testObservableList);
- group('ObservableValue', testObservableValue);
-}
-
-void validateEvent(ChangeEvent e, target, pName, index, type, newVal, oldVal) {
- expect(e.target).equals(target);
- expect(e.propertyName).equals(pName);
- expect(e.index).equals(index);
- expect(e.type).equals(type);
- expect(e.newValue).equals(newVal);
- expect(e.oldValue).equals(oldVal);
-}
-
-void validateGlobal(ChangeEvent e, target) {
- validateEvent(e, target, null, null, ChangeEvent.GLOBAL, null, null);
-}
-
-void validateInsert(ChangeEvent e, target, pName, index, newVal) {
- validateEvent(e, target, pName, index, ChangeEvent.INSERT, newVal, null);
-}
-
-void validateRemove(ChangeEvent e, target, pName, index, oldVal) {
- validateEvent(e, target, pName, index, ChangeEvent.REMOVE, null, oldVal);
-}
-
-void validateUpdate(ChangeEvent e, target, pName, index, newVal, oldVal) {
- validateEvent(e, target, pName, index, ChangeEvent.UPDATE, newVal, oldVal);
-}
« no previous file with comments | « client/tests/client/observable/ObservableValueTests.dart ('k') | client/tests/client/touch/touch_tests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698