Class: Lutaml::SysMl::TestCase

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

Instance Attribute Summary collapse

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

#initialize

Methods included from Uml::HasAttributes

#update_attributes

Constructor Details

This class inherits a constructor from Lutaml::Uml::TopElement

Instance Attribute Details

#base_behaviorObject

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

#verifiesObject

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_nameObject



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

#nameObject



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