Sha256: 4da4507e1a502b27129d6d6b18bd467dfbf124482c0277d3aba068f483c03adb

Contents?: true

Size: 789 Bytes

Versions: 5

Compression:

Stored size: 789 Bytes

Contents

# Allow examples to be run in-place without requiring a gem install
$LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'

require 'rubygems'
require 'test/unit'
require 'shoulda'
require 'yaml'
require 'hornetq'

class LoggingTest < Test::Unit::TestCase
  context 'Without Connection' do
    def log_it
      HornetQ::logger.error 'Hello'
      HornetQ::logger.warn 'Hello'
      HornetQ::logger.info 'Hello'
      HornetQ::logger.debug 'Hello'
      HornetQ::logger.trace 'Hello'
    end
    
    should 'be able to use the default HornetQ logger' do
      # Reset logger to HornetQ logger
      HornetQ::logger = nil
      log_it
    end
    
    should 'be able to use the default HornetQ Ruby logger' do
      HornetQ::logger = HornetQ::ruby_logger
      log_it
    end
    
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jruby-hornetq-0.4.0 test/logging_test.rb
jruby-hornetq-0.3.3 test/logging_test.rb
jruby-hornetq-0.3.2 test/logging_test.rb
jruby-hornetq-0.3.1 test/logging_test.rb
jruby-hornetq-0.3.0.alpha test/logging_test.rb