Todays success is to accidentally make 12 existing and unrelated tests
pass on Firebird by the following one-liner. :) (The tests are using
identity generator which falls back to sequence.)
public override string GetSelectSequenceNextValString(string sequenceName)
{
return string.Format("gen_id({0}, 1 )", sequenceName);
}
Why is it that several of the build configurations on the build server
show green, despite many failing tests? How does it decide which tests
can fail without failing the entire build?
/Oskar