#region CPL License /* Nuclex Framework Copyright (C) 2002-2009 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #endregion #if UNITTEST using System; using System.Collections.Generic; using System.Text; using NUnit.Framework; namespace Nuclex.Support { /// /// Unit test for the helper class to .NET's string builder /// [TestFixture] public class StringBuilderHelperTest { /// /// Verifies that bytes are correctly appended to a string builder /// [Test] public void TestAppendByte() { StringBuilder builder = new StringBuilder(); StringBuilderHelper.Append(builder, (byte)255); Assert.AreEqual("255", builder.ToString()); } /// /// Verifies that a byte with value 0 is correctly appended to a string builder /// [Test] public void TestAppendNullByte() { StringBuilder builder = new StringBuilder(); StringBuilderHelper.Append(builder, (byte)0); Assert.AreEqual("0", builder.ToString()); } /// /// Verifies that a positive integer is correctly appended to a string builder /// [Test] public void TestAppendPositiveInteger() { StringBuilder builder = new StringBuilder(); StringBuilderHelper.Append(builder, 12345); Assert.AreEqual("12345", builder.ToString()); } /// /// Verifies that an integer with value 0 is correctly appended to a string builder /// [Test] public void TestAppendNullInteger() { StringBuilder builder = new StringBuilder(); StringBuilderHelper.Append(builder, 0); Assert.AreEqual("0", builder.ToString()); } /// /// Verifies that a negative integer is correctly appended to a string builder /// [Test] public void TestAppendNegativeInteger() { StringBuilder builder = new StringBuilder(); StringBuilderHelper.Append(builder, -12345); Assert.AreEqual("-12345", builder.ToString()); } /// /// Verifies that negative floating point values are correctly converted /// [Test] public void TestAppendNegativeFloat() { StringBuilder builder = new StringBuilder(); StringBuilderHelper.Append(builder, -32.015625f); Assert.AreEqual("-32.015625", builder.ToString()); } /// /// Verifies that positive floating point values are correctly converted /// [Test] public void TestAppendPositiveFloat() { StringBuilder builder = new StringBuilder(); StringBuilderHelper.Append(builder, 10.0625f); Assert.AreEqual("10.0625", builder.ToString()); } /// /// Verifies that very small floating point values are correctly converted /// [Test] public void TestAppendSmallFloat() { StringBuilder builder = new StringBuilder(); StringBuilderHelper.Append(builder, 0.00390625f); Assert.AreEqual("0.00390625", builder.ToString()); } /// /// Verifies that very large floating point values are correctly converted /// [Test] public void TestAppendHugeFloat() { StringBuilder builder = new StringBuilder(); StringBuilderHelper.Append(builder, 1000000000.0f); Assert.AreEqual("1000000000.0", builder.ToString()); } /// /// Verifies that the contents of a string builder can be cleared /// [Test] public void TestClear() { StringBuilder builder = new StringBuilder("Hello World"); StringBuilderHelper.Clear(builder); Assert.AreEqual(string.Empty, builder.ToString()); } } } // namespace Nuclex.Support #endif // UNITTEST