1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
#!/usr/bin/env ruby
#
# Put description here
#
#
#
#
#
require 'swig_assert'
require 'default_constructor'
include Default_constructor
# Ruby 1.6 raises NameError if you try to call Class.new where no constructor
# is defined; Ruby 1.7 changed this to NoMethodError
NoConstructorError = Kernel.const_defined?("NoMethodError") ? NoMethodError : NameError
# This should be no problem
a = A.new
# Nor should this
aa = AA.new
# The default constructor for B is private, so this should raise an exception
begin
b = B.new
rescue ArgumentError
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::BB
exceptionRaised = true
end
# The two-argument constructor for B should work
b = B.new(3, 4)
# BB shouldn't inherit B's default constructor, so this should raise an exception
begin
bb = BB.new
puts "Whoa. new BB created."
rescue NoConstructorError
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::BB
exceptionRaised = true
end
# C's constructor is protected, so this should raise an exception
begin
c = C.new
print "Whoa. new C created."
rescue NoConstructorError
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::C
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::C
# pass
end
# CC gets a default constructor, so no problem here
cc = CC.new
# D's constructor is private, so this should fail
begin
d = D.new
puts "Whoa. new D created"
rescue NoConstructorError
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::D
# pass
end
# DD shouldn't get a default constructor, so this should fail
begin
dd = DD.new
puts "Whoa. new DD created"
rescue NoConstructorError
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::DD
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::D
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::DD
# pass
end
# AD shouldn't get a default constructor, so this should fail
begin
ad = AD.new
puts "Whoa. new AD created"
rescue NoConstructorError
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::AD
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::AD
# pass
end
# Both of the arguments to E's constructor have default values,
# so this should be fine.
e = E.new
# EE should get a default constructor
ee = EE.new
# EB should not get a default constructor (because B doesn't have one)
begin
eb = EB.new
puts "Whoa. new EB created"
rescue NoConstructorError
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::EB
# pass
rescue TypeError
# In Ruby 1.8 the exception raised is:
# TypeError: allocator undefined for Default_constructor::EB
# pass
end
# This should work fine
f = F.new
# This should work fine
g = G.new
# This should work fine
gg = GG.new
|