class FILE_PROCESSING_AUTOTEST_APP

(source code)

description

Finalized executable tests for library file-processing.ecf

notes

Command option: -file_processing_autotest

Test Sets

FILE_TREE_INPUT_OUTPUT_COMMAND_TEST_SET
FILE_SYNC_MANAGER_TEST_SET
MUTEX_FILE_TEST_SET
UUID_TEST_SET
note
	description: "Finalized executable tests for library [./library/file-processing.html file-processing.ecf]"
	notes: "[
		Command option: `-file_processing_autotest'
		
		**Test Sets**
		
			${FILE_TREE_INPUT_OUTPUT_COMMAND_TEST_SET}
			${FILE_SYNC_MANAGER_TEST_SET}
			${MUTEX_FILE_TEST_SET}
			${UUID_TEST_SET}
	]"

	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:27 GMT (Saturday 20th January 2024)"
	revision: "23"

class
	FILE_PROCESSING_AUTOTEST_APP

inherit
	EL_AUTOTEST_APPLICATION [
		FILE_TREE_INPUT_OUTPUT_COMMAND_TEST_SET,
		FILE_SYNC_MANAGER_TEST_SET,
		FILE_LOCKING_TEST_SET
	]

create
	make

feature {NONE} -- Implementation

	compile: TUPLE [
		EL_DEFAULT_FILE_PROCESSING_COMMAND,
		EL_DIRECTORY_CONTENT_PROCESSOR,
		EL_DIRECTORY_LIST,
		EL_DIRECTORY_PATH_LIST,
		EL_DIRECTORY_TREE_FILE_PROCESSOR,

		EL_FILE_SWAPPER, EL_FILE_TREE_COMMAND,

		EL_UPDATEABLE_FILE
	]
		do
			create Result
		end

end