13 lines
223 B
C#
13 lines
223 B
C#
|
using NUnit.Framework;
|
||
|
using Helpers;
|
||
|
|
||
|
namespace NAnt.NUnit2.Tests {
|
||
|
[TestFixture]
|
||
|
public class ReferenceTests {
|
||
|
[Test]
|
||
|
public void LogTest () {
|
||
|
Log.Debug ("whatever");
|
||
|
}
|
||
|
}
|
||
|
}
|