
Now, functional tests would be located in murano/tests folder Group all unit tests to the corresponding folder under tests Run only unit tests in Opentack gate Change-Id: I5ebea265fd7cdef7e77a47eedae40d23f91638d0 Partly-Closes-Bug: #1349383
18 lines
320 B
YAML
18 lines
320 B
YAML
Name: SingleInheritanceChild
|
|
|
|
Extends: SingleInheritanceParent
|
|
|
|
Methods:
|
|
testVirtualCalls:
|
|
Body:
|
|
$.method1()
|
|
|
|
method1:
|
|
Body:
|
|
- trace('SingleInheritanceChild::method1')
|
|
- $.super($.method1())
|
|
|
|
method2:
|
|
Body:
|
|
- trace('SingleInheritanceChild::method2')
|
|
- $.super($.method2()) |