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

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

Issue 8348016: Clean up observable tests to new API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add comment about architecture.py. Created 9 years, 2 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/ObservableTestSetBase.dart
diff --git a/client/tests/client/observable/ObservableTestSetBase.dart b/client/tests/client/observable/ObservableTestSetBase.dart
deleted file mode 100644
index a5c1b20fd17c1b583041bbff171923f8cebc4e52..0000000000000000000000000000000000000000
--- a/client/tests/client/observable/ObservableTestSetBase.dart
+++ /dev/null
@@ -1,21 +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.
-
-/**
- * Defines helper methods that the other TestSet classes in this library
- * share.
- */
-class ObservableTestSetBase extends TestSet {
- // TODO(rnystrom): Remove this when default constructors are supported.
- ObservableTestSetBase() : super();
-
- void checkEvent(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);
- }
-}
« no previous file with comments | « client/tests/client/observable/ObservableListTests.dart ('k') | client/tests/client/observable/ObservableValueTests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698