# frozen_string_literal: true require 'tc_helper' class TestGradientStop < Test::Unit::TestCase def setup @item = Axlsx::GradientStop.new(Axlsx::Color.new(rgb: "FFFF0000"), 1.0) end def teardown; end def test_initialiation assert_equal("FFFF0000", @item.color.rgb) assert_in_delta(@item.position, 1.0) end def test_position assert_raise(ArgumentError) { @item.position = -1.1 } assert_nothing_raised { @item.position = 0.0 } assert_in_delta(@item.position, 0.0) end def test_color assert_raise(ArgumentError) { @item.color = nil } color = Axlsx::Color.new(rgb: "FF0000FF") @item.color = color assert_equal("FF0000FF", @item.color.rgb) end end