#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ ENGG1811 Week 4 test code to test my_max (different test cases) """ # The test inputs and expected output test_input = [-2, -5, -8] test_expected_outputs = [-2] # To carry out the test import my_max # The test file # Loop through all the tests # 1 # Add a dummy line test_output = my_max.my_max(test_input)