public void StringBuilderPool_Write_Works() { //Arrange var pool = new StringBuilderPool(10); //Act pool.Write("abc"); //Assert Assert.AreEqual(pool[0].ToString(), "abc"); }