AutolabJS/AutolabJS

View on GitHub
docs/examples/unit_tests/Driver.py

Summary

Maintainability
A
1 hr
Test Coverage
from Test import Test

if __name__ == '__main__':

    check = Test()

    try:
        score = check.test()
        print score;

    except Exception:
        print 125
    else:
        pass