Sha256: d40ac64ace26da6d46327b46c1b794874667b72b4c0f0208def4981d11a29f6a

Contents?: true

Size: 376 Bytes

Versions: 1

Compression:

Stored size: 376 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.0 test/test_polyhedron.rb