I used to use these in NUnit and they are really useful. Any idea how to do something like that?
EDIT, CODE SAMPLE:
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()