AIMA.Test.Core.Unit.XYLocationTest.testEquality C# (CSharp) 메소드

testEquality() 개인적인 메소드

private testEquality ( ) : void
리턴 void
	public void testEquality() {
		XYLocation loc1 = new XYLocation(3, 4);
		XYLocation loc2 = new XYLocation(3, 4);
        Assert.AreEqual(loc1, loc2);
	}
}