るりまサーチ

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.122秒)
トップページ > クエリ:i[x] > クエリ:class[x] > クエリ:minitest/unit[x]

別のキーワード

  1. argf.class lines
  2. argf.class each
  3. argf.class each_line
  4. class new
  5. argf.class gets

種類

ライブラリ

クラス

キーワード

検索結果

minitest/unit (44042.0)

ユニットテストを行うためのライブラリです。

...ユニットテストを行うためのライブラリです。

=== 使い方

minitest/unit
は以下のように使います。

テスト対象のソース (foo.rb) を用意します。

class
Foo
def foo
"foo"
end
def bar
"foo"
end
end

次にユニットテス...
...ardown メソッドが必ず実行されます。

minitest/unit
を Kernel.#require しただけではテストが自動実行されません。

require 'minitest/unit'
require 'foo'

MiniTest::Unit.autorun

class
TestFoo < MiniTest::Unit::TestCase
def setup
@foo = Foo.new...
...@foo = nil
end

def test_foo
assert_equal "foo", @foo.foo
end

def test_bar
assert_equal "bar", @foo.bar
end
end

または MiniTest::Unit.autorun を省略して以下のように書くこともできます。

require 'minitest/unit'
require 'minitest/aut...

MiniTest::Unit::TestCase::PASSTHROUGH_EXCEPTIONS -> [Class] (14201.0)

システム関連の例外のリストです。内部で使用します。

システム関連の例外のリストです。内部で使用します。

test/unit (6018.0)

ユニットテストを行うためのライブラリです。

...してください。

* Test::Unit - Ruby用単体テストフレームワーク: https://test-unit.github.io/

なお、2.2.0より前のtest/unit は当時バンドルしていた minitest/unit を使って再実装し
ていましたが、上記のtest/unitと完全な互換性がある訳で...
...om/blog/2014/11/6.html
* RubyKaigi 2015:The history of testing framework in Ruby https://www.clear-code.com/blog/2015/12/12.html

=== 使い方

Test::Unit は以下のように使います。

まずテスト対象のソース(foo.rb)が必要です。

class
Foo
def foo
"fo...
...ドが必ず
呼ばれます。実行されたあとには、teardown メソッドが必ず呼ばれます。

require 'test/unit'
require 'foo'

class
TC_Foo < Test::Unit::TestCase
def setup
@obj = Foo.new
end

# def teardown
# end

def test_foo...