/// <inheritdoc />
 public void Test(int x, string y, MyUnitTestClass myUnitTestClass)
 {
     Console.WriteLine("testing");
 }
 /// <inheritdoc />
 public Task TestAsync(int x, string y, MyUnitTestClass myUnitTestClass)
 {
     return(Task.Delay(100));
 }
Пример #3
0
 /// <summary>
 ///     The equals.
 /// </summary>
 /// <param name="other">
 ///     The other.
 /// </param>
 /// <returns>
 ///     The <see cref="bool" />.
 /// </returns>
 protected bool Equals(MyUnitTestClass other)
 {
     return(X == other.X && string.Equals(Y, other.Y));
 }