Validating the File Content

Exact Matching

<test name="test_fh_1">
		<flow>flow5</flow>
		<description>Check expected FileHandle</description>
		<inject mod="fwfh">
			<fh filename="1">
				<content>File content 1</content>
			</fh>
		</inject>
		<expect mod="port1">
			<fh filename="1">
				<content>File content 1</content>
			</fh>
		</expect>
	</test>

Regexp Matching

<test name="test_fh_1">
		<flow>flow5</flow>
		<description>Check expected FileHandle</description>
		<inject mod="fwfh">
			<fh filename="1">
				<content>File content 1</content>
			</fh>
		</inject>
		<expect mod="port1">
			<fh filename="1">
				<reContent>File content.*</reContent>
			</fh>
		</expect>
		</test>