Uploading files is pretty important for my project, and although most companies avoid testing it like something with a really bad smell, I took a stab at it.
Unfortunately it is impossible right now to clear the CUploadedFile::$_files-property between test runs, forcing me to switch to process isolation for testing. This obviously increases the test time by a factor 10.
So the question is, as the topic states, is it possible to make CUploadedFile (and imho all components that have a private static that is only initialized once) more unit test friendly?