OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 namespace UnitTests | 5 namespace UnitTests |
6 { | 6 { |
7 using System; | 7 using System; |
8 using System.Reflection; | 8 using System.Reflection; |
9 | 9 |
10 using EnvDTE80; | 10 using EnvDTE80; |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 1, 1, string.Empty, goodFlags, Strings.ChromeProcessName); | 277 1, 1, string.Empty, goodFlags, Strings.ChromeProcessName); |
278 | 278 |
279 Assert.IsTrue(target.IsPluginProcess(goodProc, string.Empty)); | 279 Assert.IsTrue(target.IsPluginProcess(goodProc, string.Empty)); |
280 Assert.IsFalse(target.IsPluginProcess(badProc1, string.Empty)); | 280 Assert.IsFalse(target.IsPluginProcess(badProc1, string.Empty)); |
281 Assert.IsFalse(target.IsPluginProcess(badProc2, string.Empty)); | 281 Assert.IsFalse(target.IsPluginProcess(badProc2, string.Empty)); |
282 Assert.IsFalse(target.IsPluginProcess(badProc3, string.Empty)); | 282 Assert.IsFalse(target.IsPluginProcess(badProc3, string.Empty)); |
283 Assert.IsFalse(target.IsPluginProcess(badProc4, string.Empty)); | 283 Assert.IsFalse(target.IsPluginProcess(badProc4, string.Empty)); |
284 } | 284 } |
285 } | 285 } |
286 } | 286 } |
OLD | NEW |