Sha256: 3cd719c6577f6ef422b44a38bf10dd206d19413a53fbcd02eadd9d6cc0f2d34d

Contents?: true

Size: 380 Bytes

Versions: 1

Compression:

Stored size: 380 Bytes

Contents

#! /usr/bin/env ruby
# coding: utf-8

require "test/unit"
require "helper"
require "mageo/polyhedron.rb"

# initialize でインスタンスを生成できないことのみテストする。
# その他の機能はサブクラスでテスト。
class TC_Polyhedron < Test::Unit::TestCase
  def test_initialize
    assert_raise( NotImplementedError ) { Polyhedron.new }
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mageo-0.0.1 test/test_polyhedron.rb