mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 12:08:37 +08:00
20 lines
550 B
C#
20 lines
550 B
C#
using NUnit.Framework;
|
|
|
|
namespace mRemoteNGTests.Tools
|
|
{
|
|
public static class NunitExtensions
|
|
{
|
|
/// <summary>
|
|
/// Set the name of the fixture created by this <see cref="TestFixtureData"/>
|
|
/// </summary>
|
|
/// <param name="fixtureData"></param>
|
|
/// <param name="name"></param>
|
|
/// <returns></returns>
|
|
public static TestFixtureData SetName(this TestFixtureData fixtureData, string name)
|
|
{
|
|
fixtureData.TestName = name;
|
|
return fixtureData;
|
|
}
|
|
}
|
|
}
|