public void IntFailureThroughPromise() { bool called = false; m_promise.FulfillError(new Exception()); m_future.Recover((e) => { called = true; }); Assert.That(called); }