如何在同一源文件中安装测试单元?

时间:2010-10-25 10:13:58

标签: ruby unit-testing testunit

这个问题与Ruby有关。

假设我希望将我的类的测试单元放在与其定义相同的文件中。有可能这样做吗?例如,如果我在运行文件时传递“--test”参数,我希望它运行测试单元。否则,正常执行。

想象一下这样的文件:

require "test/unit"

class MyClass

end

class MyTestUnit < Test::Unit::TestCase
# test MyClass here
end

if $0 == __FILE__
   if ARGV.include?("--test")
      # run unit test
   else
      # run normally
   end
end

我应该在#run unit test部分提供哪些代码?

1 个答案:

答案 0 :(得分:3)

这可以通过模块来实现:

#! /usr/bin/env ruby

module Modulino
    def modulino_function
        return 0
    end
end

if ARGV[0] == "-test"
    require 'test/unit'

    class ModulinoTest < Test::Unit::TestCase
        include Modulino
        def test_modulino_function
            assert_equal(0, modulino_function)
        end
    end
else
    puts "running"
end

或没有模块,实际上:

#! /usr/bin/env ruby

def my_function
    return 0
end

if ARGV[0] == "-test"
    require 'test/unit'

    class MyTest < Test::Unit::TestCase
        def test_my_function
            assert_equal(0, my_function)
        end
    end
else
    puts "running rc=".my_function()
end