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

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