# testtranscript.py
# YOUR NAME HERE; skeleton by Lillian Lee (LJL2) and Steve Marschner (SRM2), Feb 9, 2014
# DATE YOU COMPLETED THIS HERE

"""Unit test for module transcript

"""

import transcript
import cornelltest


def test_lettergrade_to_val():
    """test lettergrade_to_val"""
    pass


def test_Titem_init():
    """test initializer for class Titem"""
    # To keep this lab short, you need only implement one test case here
    pass

def test_raise():
    """test raise_grade"""
    pass


# Application code
if __name__ == "__main__":

    print "Starting tests of transcript module"

    test_lettergrade_to_val()
    print "test of lettergrade_to_val passed"

    test_Titem_init()
    print "test of initializer for Titem passed"

    test_raise()
    print "test of raise_grade passed"

    print "All tests for module transcript passed"