class Lutaml::SysMl::TestCase
Attributes
base_behavior[RW]
verifies[RW]
Public Instance Methods
full_name()
click to toggle source
# File lib/lutaml/sysml/test_case.rb, line 13 def full_name if base_behavior != nil and base_behavior.name != nil return base_behavior.full_name end return nil end
name()
click to toggle source
# File lib/lutaml/sysml/test_case.rb, line 6 def name if base_behavior != nil and base_behavior.name != nil return base_behavior.name end return nil end