class TestMockLogger

Public Instance Methods

test_all() click to toggle source
# File vendor/qwik/lib/qwik/mock-logger.rb, line 48
def test_all
  # test_initialize
  s = QuickML::MockLogger.new

  # test_log
  s.log('t')

  # test_get_log
  ok_eq(['t'], s.get_log)

  # test_vlog
  s.vlog('v')

  # test_get_vlog
  ok_eq(['v'], s.get_vlog)
end