class StdOutErrLoggerTest

def test_logging_with_array

def test_logging_with_array
  logger = StdOutErrLogger.new
  logger.info(["Message line 1", "Message line 2"])
  assert_equal "Message line 1\nMessage line 2\n", $stdout.string
end