Hob Spillane
Hob Spillane
OpenAPI is meant more for speccing APIs, no? This seems more like a request for a way to spec schemas. There are a couple of interesting PRs to that effect...
fwiw, I've already used @kenfinnigan's Go structs with great success to generate OpenSLO yaml docs from a DB of SLOs that I've been maintaining.
Actually, I can't compile now... I was leveraging Mockolatier.prepareClassRecipies() which no longer seems to be available.
Here's the method that calls it: public static function prepareMockableSystemClasses(data:MockolateRunnerData, parentToken:AsyncTestToken):void { _parentToken = parentToken; if(mockableSystemClassesPrepared) { injectMocks(null); }else{ var preparer:IEventDispatcher = data.mockolatier.prepareClassRecipes(getSystemClassRecipies()); preparer.addEventListener(Event.COMPLETE, injectMocks); mockableSystemClassesPrepared = true; } }...
Looks like it's under a new namespace. I'll try just switching to prepare() and see how that goes.
Ok... I refactored our code to use prepare() and things are compiling now. I've also been able to get the suite to run to completion, but not every time. Now,...
We use MockolateRunner directly for some tests, but there are other cases where we use a new runner that I've created. That runner sub-classes MockolateRunner. Where it's declared (using RunWith())...
btw... If you'd like to see any of this in action and step thru the code, I'd be happy to setup a screen share. You have my email.
Well done. I'll get updated & kick off a few runs of the suite. Thanks!
I grabbed the latest code & compiled from source and this issue seems to be gone. I'm seeing something else strange though. It seems like anywhere where we were doing...