AIMA.Test.Core.Unit.XYLocationTest.testXYLocationAtributeSettingOnConstruction C# (CSharp) Méthode

testXYLocationAtributeSettingOnConstruction() private méthode

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