Class: Lutaml::Sysml::TestCase
- Inherits:
-
Uml::TopElement
- Object
- Model::Serializable
- 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.
Instance Method Summary collapse
Methods inherited from Uml::TopElement
#definition_from_yaml, #definition_to_yaml, #full_name_from_yaml, #full_name_to_yaml
Instance Attribute Details
#base_behavior ⇒ Object
Returns the value of attribute base_behavior.
6 7 8 |
# File 'lib/lutaml/sysml/test_case.rb', line 6 def base_behavior @base_behavior end |
#verifies ⇒ Object
Returns the value of attribute verifies.
6 7 8 |
# File 'lib/lutaml/sysml/test_case.rb', line 6 def verifies @verifies end |
Instance Method Details
#full_name ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/lutaml/sysml/test_case.rb', line 16 def full_name if !base_behavior.nil? && !base_behavior.name.nil? return base_behavior.full_name end nil end |
#name ⇒ Object
8 9 10 11 12 13 14 |
# File 'lib/lutaml/sysml/test_case.rb', line 8 def name if !base_behavior.nil? && !base_behavior.name.nil? return base_behavior.name end nil end |