
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
28 lines
465 B
YAML
28 lines
465 B
YAML
Name: ParentClass1
|
|
|
|
Extends: CommonParent
|
|
|
|
Properties:
|
|
ambiguousProperty1:
|
|
Contract: $.int()
|
|
|
|
ambiguousProperty2:
|
|
Contract: $.string()
|
|
Usage: InOut
|
|
|
|
Methods:
|
|
method1:
|
|
Body:
|
|
- trace('ParentClass1::method1')
|
|
|
|
setPrivatePropertyChain:
|
|
Body:
|
|
- $.privateName: 'ParentClass1'
|
|
- $.cast(CommonParent).setPrivatePropertyChain()
|
|
- trace($.privateName)
|
|
|
|
|
|
setAmbiguousProperty2:
|
|
Body:
|
|
$.ambiguousProperty2: '555'
|