Ejemplo n.º 1
0
        public void EqualsTest()
        {
            var temp   = new SurfaceLib.Types.Point3D(2, 4.1, 5);
            var actual = this._point.Equals(temp);

            Assert.IsFalse(actual);
        }
Ejemplo n.º 2
0
        public void OperatorEqualNullTest()
        {
            SurfaceLib.Types.Point3D temp = null;
            var actual = this._pointLeft == temp;

            Assert.IsFalse(actual);
        }
Ejemplo n.º 3
0
 public void Initialize()
 {
     this._point = new SurfaceLib.Types.Point3D(3.2, 5.1, 4);
 }
Ejemplo n.º 4
0
 public void Initialize()
 {
     this._pointLeft  = new SurfaceLib.Types.Point3D(3.1, 4.2, 5);
     this._pointRight = new SurfaceLib.Types.Point3D(4.1, 4, 3);
 }