Ejemplo n.º 1
0
def test_parser_exceptions():
    path = inputPath / 'org.example.failing.qface'
    system = FileSystem.parse_document(path)

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