class TEST_AUTHORIZATION_LOG

(source code)

Client examples: NETWORK_TEST_SET

description

Test EL_TODAYS_AUTHORIZATION_LOG using data from test/data/network/auth.log

note
	description: "[
		Test ${EL_TODAYS_AUTHORIZATION_LOG} using data from `test/data/network/auth.log'
	]"

	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: "2024-01-20 19:18:26 GMT (Saturday 20th January 2024)"
	revision: "3"

class
	TEST_AUTHORIZATION_LOG

inherit
	EL_TODAYS_AUTHORIZATION_LOG
		redefine
			is_new_day
		end

create
	make

feature {NONE} -- Implementation

	is_new_day: BOOLEAN
		-- fixed to Oct 22th for test purposes
		do
			Result := Precursor
			today.set_day (22)
			today.set_month (10)
		end

end