add missing files
[mono.git] / mcs / nunit20 / util / ConsoleWriter.cs
index 6b0d43249b09e7f5e4804f2aa37ed254b93d913e..70300c3b0c7e55f9a19cce20358654e6fb85c876 100644 (file)
@@ -1,8 +1,8 @@
 #region Copyright (c) 2002-2003, James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole, Philip A. Craig
 /************************************************************************************
 '
-' Copyright © 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
-' Copyright © 2000-2003 Philip A. Craig
+' Copyright Â© 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+' Copyright Â© 2000-2003 Philip A. Craig
 '
 ' This software is provided 'as-is', without any express or implied warranty. In no 
 ' event will the authors be held liable for any damages arising from the use of this 
@@ -16,8 +16,8 @@
 ' you wrote the original software. If you use this software in a product, an 
 ' acknowledgment (see the following) in the product documentation is required.
 '
-' Portions Copyright © 2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
-' or Copyright © 2000-2003 Philip A. Craig
+' Portions Copyright Â© 2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+' or Copyright Â© 2000-2003 Philip A. Craig
 '
 ' 2. Altered source versions must be plainly marked as such, and must not be 
 ' misrepresented as being the original software.
@@ -44,7 +44,12 @@ namespace NUnit.Util
                {
                        this.console = console;
                }
-                       
+
+               public override void Flush()
+               {
+                       console.Flush();
+               }
+
                public override void Write(char c)
                {
                        console.Write(c);