<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"""
Unit test for the module name

This module demonstrates the most primitive form of testing script.  It performs
the tests directly, without wrapping them in a test procedure

Author: Walker M. White
Date:   August 31, 2017 (Python 3 Version)
"""
import cornell          # cornell assert functions
import name             # function to be tested

# Test case 1
result = name.last_name_first('Walker White')
cornell.assert_equals('White, Walker',result)

# Test case 2
result = name.last_name_first('Walker     White')
cornell.assert_equals('White, Walker',result)

# Everything is ok
print('Module name is working correctly')

</pre></body></html>