-
Notifications
You must be signed in to change notification settings - Fork 272
/
StreamReaderReadLineTests.cs
45 lines (40 loc) · 1.27 KB
/
StreamReaderReadLineTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Text;
using System.Threading.Tasks;
using BenchmarkDotNet.Attributes;
using MicroBenchmarks;
namespace System.IO.Tests
{
[BenchmarkCategory(Categories.Libraries)]
public class StreamReaderReadLineTests : TextReaderReadLineTests
{
private byte[] _bytes;
[GlobalSetup]
public void GlobalSetup()
{
_text = GenerateLinesText(LineLengthRange, 16 * 1024);
_bytes = Encoding.UTF8.GetBytes(_text);
}
[Benchmark]
[MemoryRandomization]
public void ReadLine()
{
using (StreamReader reader = new StreamReader(new MemoryStream(_bytes)))
{
while (reader.ReadLine() != null) ;
}
}
[Benchmark]
[BenchmarkCategory(Categories.NoWASM)]
[MemoryRandomization]
public async Task ReadLineAsync()
{
using (StreamReader reader = new StreamReader(new MemoryStream(_bytes)))
{
while (await reader.ReadLineAsync() != null) ;
}
}
}
}