-
-
Notifications
You must be signed in to change notification settings - Fork 987
/
Copy pathPathTooLongTests.cs
21 lines (19 loc) · 1.1 KB
/
PathTooLongTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Tests.XUnit;
namespace BenchmarkDotNet.IntegrationTests
{
public class PathTooLongTests : BenchmarkTestExecutor
{
[FactEnvSpecific("Testing Windows long path limitation", EnvRequirement.WindowsOnly)]
public void PathTooLongTest() =>
CanExecute<
VeryLongName012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789>();
[DryJob]
public class
VeryLongName012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
{
[Benchmark]
public void Foo() { }
}
}
}