Class: Lutaml::SysMl::TestCase
- Inherits:
-
Uml::TopElement
- Object
- Uml::TopElement
- Lutaml::SysMl::TestCase
- Defined in:
- lib/lutaml/sysml/test_case.rb
Instance Attribute Summary collapse
-
#base_behavior ⇒ Object
Returns the value of attribute base_behavior.
-
#verifies ⇒ Object
Returns the value of attribute verifies.
Attributes inherited from Uml::TopElement
#comments, #definition, #href, #keyword, #namespace, #stereotype, #visibility, #xmi_id, #xmi_uuid
Instance Method Summary collapse
Methods inherited from Uml::TopElement
Methods included from Uml::HasAttributes
Constructor Details
This class inherits a constructor from Lutaml::Uml::TopElement
Instance Attribute Details
#base_behavior ⇒ Object
Returns the value of attribute base_behavior.
4 5 6 |
# File 'lib/lutaml/sysml/test_case.rb', line 4 def base_behavior @base_behavior end |
#verifies ⇒ Object
Returns the value of attribute verifies.
4 5 6 |
# File 'lib/lutaml/sysml/test_case.rb', line 4 def verifies @verifies end |
Instance Method Details
#full_name ⇒ Object
13 14 15 16 17 18 |
# 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 ⇒ Object
6 7 8 9 10 11 |
# 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 |