using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClassLibrary1
{
class Class1
{
[SetUp]
public void setup()
{
Console.WriteLine("setup method");
}
[TearDown]
public void teardown()
{
Console.WriteLine("teardown");
}
[OneTimeSetUp]
public void onetimesetup()
{
Console.WriteLine("onetimesetup method");
}
[OneTimeTearDown]
public void onetimeteardown()
{
Console.WriteLine("onetimeteardown method");
}
[Test]
public void testCase()
{
Console.WriteLine("Testcase method 2");
}
}
}