forked from tonerdo/readline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathReadLineTests.cs
executable file
·46 lines (40 loc) · 1.05 KB
/
ReadLineTests.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
46
using System;
using System.Linq;
using Xunit;
using static System.ReadLine;
namespace ReadLine.Tests
{
public class ReadLineTests : IDisposable
{
public ReadLineTests()
{
string[] history = new string[] { "ls -a", "dotnet run", "git init" };
AddHistory(history);
}
[Fact]
public void TestNoInitialHistory()
{
Assert.Equal(3, GetHistory().Count);
}
[Fact]
public void TestUpdatesHistory()
{
AddHistory("mkdir");
Assert.Equal(4, GetHistory().Count);
Assert.Equal("mkdir", GetHistory().Last());
}
[Fact]
public void TestGetCorrectHistory()
{
Assert.Equal("ls -a", GetHistory()[0]);
Assert.Equal("dotnet run", GetHistory()[1]);
Assert.Equal("git init", GetHistory()[2]);
}
public void Dispose()
{
// If all above tests pass
// clear history works
ClearHistory();
}
}
}