示例#1
0
def test_parser_exceptions():
    path = inputPath / 'org.example.failing.qface'
    system = FileSystem.parse_document(path)

    system = FileSystem.parse_document('not-exists')
示例#2
0
def loadOne():
    path = inputPath / 'com.pelagicore.one.qdl'
    return FileSystem.parse_document(path)
示例#3
0
def load_test():
    path = inputPath / 'com.pelagicore.test.qface'
    return FileSystem.parse_document(path)
示例#4
0
def load_tuner():
    path = inputPath / 'com.pelagicore.ivi.tuner.qface'
    return FileSystem.parse_document(path)
示例#5
0
def loadEcho():
    path = inputPath / 'org.example.echo.qface'
    return FileSystem.parse_document(path)
示例#6
0
def load_system():
    path = inputPath / 'com.pelagicore.ivi.climate.qdl'
    return FileSystem.parse_document(path)
示例#7
0
def loadValues():
    path = inputPath / 'values.qface'
    return FileSystem.parse_document(path)