16 lines
234 B
C#
16 lines
234 B
C#
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace Week_10___TDD_Tests
|
|||
|
{
|
|||
|
[TestClass]
|
|||
|
public class TDDTests
|
|||
|
{
|
|||
|
[TestMethod]
|
|||
|
public void TestMethod1()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|