8a192dae88
git-svn-id: file:///home/svn/incoming/trunk@2498 4d416f70-5f16-0410-b530-b9f4589650da
27 lines
352 B
Ruby
27 lines
352 B
Ruby
require 'Core'
|
|
|
|
module Msf
|
|
module Test
|
|
|
|
###
|
|
#
|
|
# FrameworkCoreTestSuite
|
|
# ----------------------
|
|
#
|
|
# This test suite is used to test the various core components of
|
|
# framework-core.
|
|
#
|
|
###
|
|
class FrameworkCoreTestSuite
|
|
def self.suite
|
|
suite = ::Test::Unit::TestSuite.new
|
|
|
|
suite << Msf::Test::DataStoreTestCase.suite
|
|
|
|
return suite;
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|