Class: Lutaml::Sysml::TestCase

Inherits:
Uml::TopElement show all
Defined in:
lib/lutaml/sysml/test_case.rb

Instance Attribute Summary collapse

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_behaviorObject

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

#verifiesObject

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_nameObject



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

#nameObject



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