Fire: EUnit template projects broken for both Android and plain Java

Interesting result on the beta.
The template and reference worked fine.
The new test support looks good, and showed me a NullReferenceException in the little popup that happens, and in the console.
But this code, which produces a System.ArgumentNullException, seems to stop it cold - the IDE locks up:

import RemObjects.Elements.EUnit

let lTests = Discovery.DiscoverTests()
Runner.RunTests(lTests, withListener: ConsoleTestListener())

public class MyTests: Test {
	public func AlwaysPass() {
		Assert.AreEqual(1, 1)
	}
	
	public func AlwaysFailWithException() {
		var s: String!
		MyFunc(s)
	}

	public func AlwaysFail() {
		Assert.AreEqual("a", "b")
	}
}

public func MyFunc(s: String)
{
	print(s)
}

It gets as far as showing the exception in the console, but the popup never pops, and the whole thing is frozen.