14 changed files with 52 additions and 44 deletions
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
|
||||
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||
|
||||
using System; |
||||
using System.Collections.Generic; |
||||
using ICSharpCode.PackageManagement; |
||||
using NuGet; |
||||
|
||||
namespace PackageManagement.Tests.Helpers |
||||
{ |
||||
public class FakePackageManagementOutputMessagesView : IPackageManagementOutputMessagesView |
||||
{ |
||||
public bool IsClearCalled; |
||||
|
||||
public void Clear() |
||||
{ |
||||
IsClearCalled = true; |
||||
} |
||||
} |
||||
} |
||||
Loading…
Reference in new issue