-
-
Notifications
You must be signed in to change notification settings - Fork 424
/
Copy pathPrismTests.cs
86 lines (64 loc) · 2.41 KB
/
PrismTests.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
TODO: Restore when SourceGen available
using Xunit;
namespace LanguageExt.Tests;
public class PrismTests
{
private static readonly Prism<Job, int> jobWorkerCarMileage = prism(Job.worker.ToPrism(), Worker.car.ToPrism(), Car.mileage.ToPrism());
[Fact]
public void PrismShouldGetSome()
{
var expected = Some(20000);
var car = new Car("Maserati", "Ghibli", 20000);
var worker = new Worker("Joe Bloggs", 50000, car);
var job = new Job("Programmer", "Write code and tests.", worker);
var actual = jobWorkerCarMileage.Get(job);
Assert.Equal(expected, actual);
}
[Fact]
public void PrismShouldGetNone()
{
var expected = Option<int>.None;
var worker = new Worker("Joe Bloggs", 50000, Option<Car>.None);
var job = new Job("Programmer", "Write code and tests.", worker);
var actual = jobWorkerCarMileage.Get(job);
Assert.Equal(expected, actual);
}
[Fact]
public void PrismShouldSetWhenOptionalPartOfChainIsSome()
{
var expectedCar = new Car("Maserati", "Ghibli", 25000);
var expectedWorker = new Worker("Joe Bloggs", 50000, expectedCar);
var expected = new Job("Programmer", "Write code and tests.", expectedWorker);
var car = new Car("Maserati", "Ghibli", 20000);
var worker = new Worker("Joe Bloggs", 50000, car);
var job = new Job("Programmer", "Write code and tests.", worker);
var actual = jobWorkerCarMileage.Set(25000, job);
Assert.Equal(expected, actual);
}
[Fact]
public void PrismShouldNotSetWhenOptionalPartOfChainIsNone()
{
var expectedWorker = new Worker("Joe Bloggs", 50000, Option<Car>.None);
var expected = new Job("Programmer", "Write code and tests.", expectedWorker);
var worker = new Worker("Joe Bloggs", 50000, Option<Car>.None);
var job = new Job("Programmer", "Write code and tests.", worker);
var actual = jobWorkerCarMileage.Set(25000, job);
Assert.Equal(expected, actual);
}
}
[Record]
public partial class Worker
{
public readonly string Name;
public readonly int Salary;
public readonly Option<Car> Car;
}
[Record]
public partial class Job
{
public readonly string Name;
public readonly string Description;
public readonly Worker Worker;
}
*/