2005-05-24 05:35:12 +00:00
|
|
|
#!/usr/bin/ruby
|
|
|
|
|
|
|
|
require 'test/unit'
|
|
|
|
require 'Msf/Core'
|
|
|
|
require 'Msf/Core/OptionContainer.rb.ut'
|
2005-05-26 06:35:37 +00:00
|
|
|
require 'Msf/Core/SessionManager.rb.ut'
|
2005-05-24 05:35:12 +00:00
|
|
|
|
|
|
|
class Msf::TestSuite
|
|
|
|
def self.suite
|
|
|
|
suite = Test::Unit::TestSuite.new
|
|
|
|
|
|
|
|
suite << Msf::OptionContainer::UnitTest.suite
|
2005-05-26 06:35:37 +00:00
|
|
|
suite << Msf::SessionManager::UnitTest.suite
|
2005-05-24 05:35:12 +00:00
|
|
|
|
|
|
|
return suite;
|
|
|
|
end
|
|
|
|
end
|