私はこれらを NUnit で使用していましたが、非常に便利です。そのようなことをする方法はありますか?
編集、コードサンプル:
bool condition = false;//would be nice not to have this
observable.Subscribe(_ =>
{
if (real test)
condition= true;//Assert.Pass()
});
StartObservable();
Assert.True(condition);//Assert.Fail()