public abstract void setFile(IUploadFile file);
public boolean getUploadMatch()
{
IUploadFile file = getFile();
String path = file.getFilePath();
InputStream expected = null;
InputStream actual = null;
String baseDir = TestMocks.getBaseDirectory() + "/src/test-data/";
try
{
expected = new FileInputStream(baseDir + path);
actual = file.getStream();
int i = 0;
while (true)
{