Stopwatch
This class is a System.Diagnostics.Stopwatch on operating systems that support it. On those that don't,
it replicates the functionality at the resolution supported.
using System.Diagnostics;
namespace NUnit.Framework.Compatibility
{
public class Stopwatch : System.Diagnostics.Stopwatch
{
}
}