* Added an important comment to warn people not to use MockConsole for anything but testing.

slimupdates2
Teravus Ovares (Dan Olivares) 2010-05-04 22:16:07 -04:00
parent f005e570aa
commit a9db266d93
1 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,11 @@ using System.Text;
namespace OpenSim.Framework.Console
{
/// <summary>
/// This is a Fake console that's used when setting up the Scene in Unit Tests
/// Don't use this except for Unit Testing or you're in for a world of hurt when the
/// sim gets to ReadLine
/// </summary>
public class MockConsole : CommandConsole
{
public MockConsole(string defaultPrompt) : base(defaultPrompt)