You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi.
Porting my framework to Haxe.
With FlexUnit there was a possibility to expect error from test like this:
[Test(expects="Error")]
public function testUnmapClass():void
{
factory.mapToType(IMyType, MyType1);
var o:IMyType = factory.getInstance(IMyType, [5, 7]) as IMyType;
factory.unmapType(IMyType);
var o2:IMyType = factory.getInstance(IMyType, [5, 7]) as IMyType;
}
Is it possible with munit?
The text was updated successfully, but these errors were encountered:
Hi.
Porting my framework to Haxe.
With FlexUnit there was a possibility to expect error from test like this:
Is it possible with munit?
The text was updated successfully, but these errors were encountered: