15 lines
284 B
C#
15 lines
284 B
C#
using System;
|
|
using System.Text;
|
|
|
|
namespace Results
|
|
{
|
|
public static class Utils
|
|
{
|
|
public static string GetTestName(string name, int repeats, int repetitionNr)
|
|
{
|
|
if (repeats == 1) return name;
|
|
return string.Format("{0} ({1}/{2})", name, repetitionNr, repeats);
|
|
}
|
|
}
|
|
}
|