| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- //
- // TextWriterTest.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // Copyright (C) 2004 Novell (http://www.novell.com)
- //
- using System;
- using System.Globalization;
- using System.IO;
- using System.Text;
- using NUnit.Framework;
- namespace MonoTests.System.IO
- {
- [TestFixture]
- public class TextWriterTest : Assertion
- {
- class MyTextWriter : TextWriter
- {
- public override Encoding Encoding { get { return Encoding.Default; } }
- internal MyTextWriter ()
- : base (CultureInfo.InvariantCulture)
- {
- }
- public void UpdateLine ()
- {
- CoreNewLine = new char [] {'Z'};
- }
- public void UpdateLine2 ()
- {
- CoreNewLine [0] = 'Y';
- }
- }
- [Test]
- public void CoreNewLine ()
- {
- MyTextWriter w = new MyTextWriter ();
- AssertNotNull (w.NewLine);
- w.UpdateLine ();
- AssertEquals ('Z', w.NewLine [0]);
- w.UpdateLine2 ();
- AssertEquals ('Y', w.NewLine [0]);
- }
- class ArrayOrCharTester : TextWriter {
- public bool called_array;
- public override Encoding Encoding { get { return Encoding.UTF8; }}
- public override void Write (char [] x, int a, int b)
- {
- called_array = true;
- }
- public override void Write (char c)
- {
- }
- }
- [Test]
- public void TestCharArrayCallsArrayIntInt ()
- {
- ArrayOrCharTester x = new ArrayOrCharTester ();
- x.Write (new char [] {'a','b','c'});
- AssertEquals (true, x.called_array);
- }
- }
- }
|