Ruby 没有选择正确的重载方法

发布于 2024-09-30 05:27:38 字数 660 浏览 3 评论 0原文

我有一个用于 rake 脚本的简单 Nunit 运行程序:

module NUnitRunner

    @NUnitPath = "#{RootDir}/tools/nunit/nunit-console.exe";

    def self.RunTests(testFile)
        system("\"#{@NUnitPath}\" ? \"#{testFile}\"")
    end

    def self.RunTests(testFile, runArgs)
        system("\"#{@NUnitPath}\" ? \"#{testFile}\" #{runArgs}")
    end

end

当我从任务中调用此模块时:

# Run Unit Tests
task :run_unit_tests do
    puts "Running Unit Tests"

    unitTestFile = "#{RootDir}/src/tests/unittests.dll"
    NUnitRunner.RunTests(unitTestFile)
end

它只是不断告诉我“参数数量错误(1 为 2)”,并且如果我删除需要 2 的重载方法争论它工作正常,那么在这种情况下,红宝石是否有一些我不知道的怪癖?

Ive got a simple Nunit runner for a rake script i have:

module NUnitRunner

    @NUnitPath = "#{RootDir}/tools/nunit/nunit-console.exe";

    def self.RunTests(testFile)
        system("\"#{@NUnitPath}\" ? \"#{testFile}\"")
    end

    def self.RunTests(testFile, runArgs)
        system("\"#{@NUnitPath}\" ? \"#{testFile}\" #{runArgs}")
    end

end

When im calling this module from within my task:

# Run Unit Tests
task :run_unit_tests do
    puts "Running Unit Tests"

    unitTestFile = "#{RootDir}/src/tests/unittests.dll"
    NUnitRunner.RunTests(unitTestFile)
end

It just keeps telling me "wrong number of arguments (1 for 2)", and if i remove the overloaded method which takes 2 arguments it works fine, so is there some quirk with ruby that i dont know about in this instance?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来日方长 2024-10-07 05:27:38

Ruby 不支持方法重载。

Ruby doesn't support method overloading.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文