class MiniTest::Unit

def synchronize # :nodoc:

:nodoc:
def synchronize # :nodoc:
  if @mutex then
    @mutex.synchronize { yield }
  else
    yield
  end
end