class CURRENCY_TEST_SET
Tests for library currency.ecf
note
description: "Tests for library [./library/currency.html currency.ecf]"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2023-03-10 17:29:39 GMT (Friday 10th March 2023)"
revision: "5"
class
CURRENCY_TEST_SET
inherit
EL_EQA_TEST_SET
EL_SHARED_LOCALIZED_CURRENCY_TABLE
EL_SHARED_CURRENCY_ENUM
create
make
feature {NONE} -- Initialization
make
-- initialize `test_table'
do
make_named (<<
["locale_table", agent test_locale_table]
>>)
end
feature -- Tests
test_locale_table
note
testing: "covers/{EL_LOCALIZED_CURRENCY_TABLE}.item", "covers/{EL_FUNCTION_CACHE_TABLE}.item"
local
c1, c2: EL_CURRENCY
do
c1 := Currency_table.item ("en", Currency_enum.eur)
c2 := Currency_table.item ("en", Currency_enum.eur)
assert ("same instance", c1 = c2)
end
end