Skip to content

Commit d7ecf36

Browse files
Adding back trivial test to allow a test run to complete for CI.
1 parent dbba381 commit d7ecf36

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

RSocket.Core.Tests/Test1.cs

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
using Microsoft.VisualStudio.TestTools.UnitTesting;
5+
6+
namespace RSocket.Core.Tests
7+
{
8+
[TestClass]
9+
public class Test1
10+
{
11+
[TestInitialize]
12+
public void TestInitialize()
13+
{
14+
}
15+
[TestCleanup]
16+
public void TestCleanup()
17+
{
18+
}
19+
20+
[TestMethod]
21+
public void Test()
22+
{
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)