mirror of https://github.com/AMT-Cheif/Stylet.git
47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
using NUnit.Framework;
|
|
using Stylet;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StyletUnitTests
|
|
{
|
|
[TestFixture]
|
|
public class LambdaComparerTests
|
|
{
|
|
[Test]
|
|
public void CallsLambdaToCompareObjects()
|
|
{
|
|
int a = 0;
|
|
int b = 0;
|
|
var c = new LambdaComparer<int>((x, y) =>
|
|
{
|
|
a = x;
|
|
b = y;
|
|
return false;
|
|
});
|
|
|
|
var result = c.Equals(3, 4);
|
|
|
|
Assert.AreEqual(3, a);
|
|
Assert.AreEqual(4, b);
|
|
Assert.IsFalse(result);
|
|
}
|
|
|
|
[Test]
|
|
public void ThrowsIfNullLambdaPassed()
|
|
{
|
|
Assert.Throws<ArgumentNullException>(() => new LambdaComparer<int>(null));
|
|
}
|
|
|
|
[Test]
|
|
public void ReturnsHashCodeOfPassedObject()
|
|
{
|
|
var c = new LambdaComparer<int>((a, b) => false);
|
|
Assert.AreEqual(5.GetHashCode(), c.GetHashCode(5));
|
|
}
|
|
}
|
|
}
|