Force tests to fail pending implementation.

Some of the expected failures passed on Windows - I think it's because they're not creating the "empty edits" on Windows (probably because something else is going wrong with finding which files need updating).

So for now, this forces them to fail (so they "pass"). I'll do some testing on Windows when working on these next week to figure out what's wrong.

Change-Id: I55cbf42f233e7f19b95733cfbd136b0ff1803607
Reviewed-on: https://dart-review.googlesource.com/63882
Reviewed-by: Devon Carew <devoncarew@google.com>
Commit-Queue: Danny Tuppeny <dantup@google.com>
diff --git a/pkg/analysis_server/test/services/refactoring/move_file_test.dart b/pkg/analysis_server/test/services/refactoring/move_file_test.dart
index 72f5b4b..2a84148 100644
--- a/pkg/analysis_server/test/services/refactoring/move_file_test.dart
+++ b/pkg/analysis_server/test/services/refactoring/move_file_test.dart
@@ -55,6 +55,7 @@
 
   @failingTest
   test_file_importedLibrary_sideways() async {
+    fail('Not yet implemented/tested');
     String pathA = '/project/000/1111/a.dart';
     testFile = '/project/000/1111/sub/folder/test.dart';
     addSource(pathA, '''
@@ -72,6 +73,7 @@
 
   @failingTest
   test_file_importedLibrary_down() async {
+    fail('Not yet implemented/tested');
     String pathA = '/project/000/1111/a.dart';
     testFile = '/project/000/1111/test.dart';
     addSource(pathA, '''
@@ -89,6 +91,7 @@
 
   @failingTest
   test_file_importedLibrary_package() async {
+    fail('Not yet implemented/tested');
     // configure packages
     testFile = '/packages/my_pkg/lib/aaa/test.dart';
     newFile(testFile, content: '');
@@ -119,6 +122,7 @@
 
   @failingTest
   test_file_importedLibrary_up() async {
+    fail('Not yet implemented/tested');
     String pathA = '/project/000/1111/a.dart';
     testFile = '/project/000/1111/22/test.dart';
     addSource(pathA, '''
@@ -156,6 +160,7 @@
 
   @failingTest
   test_file_referenced_by_multiple_libraries() async {
+    fail('Not yet implemented/tested');
     String pathA = '/project/000/1111/a.dart';
     String pathB = '/project/000/b.dart';
     testFile = '/project/000/1111/22/test.dart';