using System;
using NUnit.Framework;
using System.Diagnostics;
namespace grof{
/// <summary>
/// Description of AbstractTest.
/// </summary>
[TestFixture]
public class AbstractTest
{
public AbstractTest()
{
}
[SetUp]
protected void SetUp()
{
Debug.Listeners.Add( new TextWriterTraceListener( Console.Out ) );
Debug.WriteLine( "[AbstractTest#SetUp] Setting up the test." );
}
[TearDown]
protected void TearDown()
{
//Debug.Listeners.Clear();
Debug.WriteLine( "[AbstractTest#TearDown] Tearing down the test." );
}
}
}
|