AIMA.Test.Core.Unit.XYLocationTest.testXYLocationAtributeSettingOnConstruction C# (CSharp) Method

testXYLocationAtributeSettingOnConstruction() private method

private testXYLocationAtributeSettingOnConstruction ( ) : void
return void
	public void testXYLocationAtributeSettingOnConstruction() {
		XYLocation loc = new XYLocation(3, 4);
		Assert.AreEqual(3, loc.getXCoOrdinate());
        Assert.AreEqual(4, loc.getYCoOrdinate());
	}