summaryrefslogtreecommitdiffstats
path: root/toolkit/components/uniffi-fixtures/geometry/tests/bindings/test_geometry.rb
blob: 90fdff684e4da5c62b6a78ba6d69f5f88d42ba24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'test/unit'
require 'geometry'

include Test::Unit::Assertions
include Geometry

ln1 = Line.new(start: Point.new(coord_x: 0.0, coord_y: 0.0), _end: Point.new(coord_x: 1.0, coord_y: 2.0))
ln2 = Line.new(start: Point.new(coord_x: 1.0, coord_y: 1.0), _end: Point.new(coord_x: 2.0, coord_y: 2.0))

assert_equal Geometry.gradient(ln1), 2
assert_equal Geometry.gradient(ln2), 1

assert_equal Geometry.intersection(ln1, ln2), Point.new(coord_x: 0, coord_y: 0)
assert Geometry.intersection(ln1, ln1).nil?