Fixes #378. Use Platform.resolvedExecutable instead of 'dart' command
diff --git a/LibTest/io/Process/exitCode_A01_t01.dart b/LibTest/io/Process/exitCode_A01_t01.dart
index 8955f6b..d0e30e4 100644
--- a/LibTest/io/Process/exitCode_A01_t01.dart
+++ b/LibTest/io/Process/exitCode_A01_t01.dart
@@ -38,7 +38,7 @@
 List<String> args;
 
 void setCommand() {
-  command = 'dart';
+  command = Platform.resolvedExecutable;
   args = ['--version'];
 }
 
diff --git a/LibTest/io/Process/kill_A01_t02.dart b/LibTest/io/Process/kill_A01_t02.dart
index 33ef527..5407cf9 100644
--- a/LibTest/io/Process/kill_A01_t02.dart
+++ b/LibTest/io/Process/kill_A01_t02.dart
@@ -38,7 +38,7 @@
     args = ['-start'];
   }
   if (Platform.isWindows) {
-    command = 'dart';
+    command = Platform.resolvedExecutable;
     args = ['--version'];
   }
 }
diff --git a/LibTest/io/Process/pid_A01_t01.dart b/LibTest/io/Process/pid_A01_t01.dart
index 931f767..01faae9 100644
--- a/LibTest/io/Process/pid_A01_t01.dart
+++ b/LibTest/io/Process/pid_A01_t01.dart
@@ -19,7 +19,7 @@
 List<String> args;
 
 void setCommand() {
-  command = 'dart';
+  command = Platform.resolvedExecutable;
   args = ['--version'];
 }
 
diff --git a/LibTest/io/Process/runSync_A01_t01.dart b/LibTest/io/Process/runSync_A01_t01.dart
index c89b910..1ed73f9 100644
--- a/LibTest/io/Process/runSync_A01_t01.dart
+++ b/LibTest/io/Process/runSync_A01_t01.dart
@@ -43,7 +43,7 @@
     args = ['abc'];
   }
   if (Platform.isWindows) {
-    command = 'dart';
+    command = Platform.resolvedExecutable;
     args = ['--version'];
   }
 }
diff --git a/LibTest/io/Process/runSync_A02_t01.dart b/LibTest/io/Process/runSync_A02_t01.dart
index ac1092a..26239bf 100644
--- a/LibTest/io/Process/runSync_A02_t01.dart
+++ b/LibTest/io/Process/runSync_A02_t01.dart
@@ -39,7 +39,7 @@
     args = ['abc'];
   }
   if (Platform.isWindows) {
-    command = 'dart';
+    command = Platform.resolvedExecutable;
     args = ['--version'];
   }
 }
diff --git a/LibTest/io/Process/runSync_A02_t02.dart b/LibTest/io/Process/runSync_A02_t02.dart
index 44a35d9..860da59 100644
--- a/LibTest/io/Process/runSync_A02_t02.dart
+++ b/LibTest/io/Process/runSync_A02_t02.dart
@@ -39,7 +39,7 @@
     args = ['abc'];
   }
   if (Platform.isWindows) {
-    command = 'dart';
+    command = Platform.resolvedExecutable;
     args = ['--version'];
   }
 }
diff --git a/LibTest/io/Process/run_A01_t01.dart b/LibTest/io/Process/run_A01_t01.dart
index cb569dd..1833e87 100644
--- a/LibTest/io/Process/run_A01_t01.dart
+++ b/LibTest/io/Process/run_A01_t01.dart
@@ -41,7 +41,7 @@
     args = ['abc'];
   }
   if (Platform.isWindows) {
-    command = 'dart';
+    command = Platform.resolvedExecutable;
     args = ['--version'];
   }
 }
diff --git a/LibTest/io/Process/run_A02_t01.dart b/LibTest/io/Process/run_A02_t01.dart
index 13b2bab..7a40f81 100644
--- a/LibTest/io/Process/run_A02_t01.dart
+++ b/LibTest/io/Process/run_A02_t01.dart
@@ -39,7 +39,7 @@
     args = ['abc'];
   }
   if (Platform.isWindows) {
-    command = 'dart';
+    command = Platform.resolvedExecutable;
     args = ['--version'];
   }
 }
diff --git a/LibTest/io/Process/run_A02_t02.dart b/LibTest/io/Process/run_A02_t02.dart
index 94dedbe..e5baf53 100644
--- a/LibTest/io/Process/run_A02_t02.dart
+++ b/LibTest/io/Process/run_A02_t02.dart
@@ -39,7 +39,7 @@
     args = ['abc'];
   }
   if (Platform.isWindows) {
-    command = 'dart';
+    command = Platform.resolvedExecutable;
     args = ['--version'];
   }
 }
diff --git a/LibTest/io/Process/start_A04_t01.dart b/LibTest/io/Process/start_A04_t01.dart
index b78ad03..ef3e9d0 100644
--- a/LibTest/io/Process/start_A04_t01.dart
+++ b/LibTest/io/Process/start_A04_t01.dart
@@ -38,7 +38,7 @@
     args = [];
   }
   if (Platform.isWindows) {
-    command = 'dart';
+    command = Platform.resolvedExecutable;
     args = ['--version'];
   }
 }
diff --git a/LibTest/io/Process/start_A05_t01.dart b/LibTest/io/Process/start_A05_t01.dart
index 0d5bd1a..5d75298 100644
--- a/LibTest/io/Process/start_A05_t01.dart
+++ b/LibTest/io/Process/start_A05_t01.dart
@@ -39,7 +39,7 @@
     args = [];
   }
   if (Platform.isWindows) {
-    command = 'dart';
+    command = Platform.resolvedExecutable;
     args = ['--version'];
   }
 }
diff --git a/LibTest/io/Process/stderr_A01_t01.dart b/LibTest/io/Process/stderr_A01_t01.dart
index 3092d9f..104acf0 100644
--- a/LibTest/io/Process/stderr_A01_t01.dart
+++ b/LibTest/io/Process/stderr_A01_t01.dart
@@ -21,7 +21,7 @@
 List<String> args;
 
 void setCommand() {
-  command = 'dart';
+  command = Platform.resolvedExecutable;
   args = ['stream_lib.dart', 'Hi stdout', 'Hi, stderr'];
 }
 
diff --git a/LibTest/io/Process/stdin_A01_t01.dart b/LibTest/io/Process/stdin_A01_t01.dart
index dca4529..3ce0fae 100644
--- a/LibTest/io/Process/stdin_A01_t01.dart
+++ b/LibTest/io/Process/stdin_A01_t01.dart
@@ -21,7 +21,7 @@
 List<String> args;
 
 void setCommand() {
-  command = 'dart';
+  command = Platform.resolvedExecutable;
   args = ['stream_lib.dart', '1', '2', 'true'];
 }
 
diff --git a/LibTest/io/Process/stdout_A01_t01.dart b/LibTest/io/Process/stdout_A01_t01.dart
index f0bd052..44ee112 100644
--- a/LibTest/io/Process/stdout_A01_t01.dart
+++ b/LibTest/io/Process/stdout_A01_t01.dart
@@ -21,7 +21,7 @@
 List<String> args;
 
 void setCommand() {
-  command = 'dart';
+  command = Platform.resolvedExecutable;
   args = ['stream_lib.dart', 'Hi, stdout', 'Hi, stderr'];
 }