您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
763 B
22 行
763 B
using NUnit.Framework;
|
|
|
|
namespace PerformanceTests
|
|
{
|
|
[TestFixture(640, 480, false, false)]
|
|
[TestFixture(640, 480, true, false)]
|
|
[TestFixture(640, 480, true, true)]
|
|
[TestFixture(1024, 768, false, false)]
|
|
[TestFixture(1024, 768, true, false)]
|
|
[TestFixture(1024, 768, true, true)]
|
|
[TestFixture(1920, 1080, false, false)]
|
|
[TestFixture(1920, 1080, true, false)]
|
|
[TestFixture(1920, 1080, true, true)]
|
|
[Category("Performance")]
|
|
public class PerformanceTestPixelCountLabeler : PerformanceTester
|
|
{
|
|
public const string Label = "PixelCountLabeler";
|
|
|
|
public PerformanceTestPixelCountLabeler(int resx, int resy, bool capData, bool vizOn)
|
|
: base(resx, resy, capData, vizOn, Label) { }
|
|
}
|
|
}
|