def main(): """ Tests functions in this module. Intended to be used internally by the primary author of this module. """ print('-------------------------------') print('Testing functions in module m3:') print('-------------------------------') root = tkinter.Tk() data1 = m0.DataContainer() frame1 = my_frame(root, data1) frame1.grid(row=0, column=0) frame2 = m2.my_frame_hours(root, data1) frame2.grid(row=0, column=1) frame3 = m1.connect_frame(root, data1) frame3.grid(row=0, column=2) frame4 = movement_frame(root, data1) frame4.grid(row=1, column=0) frame5 = m2.my_frame_robot(root, data1) frame5.grid(row=1, column=1) frame6 = conversation_frame(root, data1) frame6.grid(row=2, column=0) frame7 = m4.my_frame(root, data1) frame7.grid(row=1, column=2) root.mainloop()
def main(): """ Runs the MAIN PROGRAM. """ print("----------------------------------------------") print("Integration Testing of the INTEGRATED PROGRAM:") print("----------------------------------------------") data = DataContainer() root = tkinter.Tk() frame1 = m1.connect_frame(root, data) frame1.grid(row=0, column=0) frame2 = m1.teleop_frame(root, data) frame2.grid(row=0, column=1) frame3 = m1.waypoint_frame(root, data) frame3.grid(row=0, column=2) frame4 = m2.my_frame_hours(root, data) frame4.grid(row=1, column=0) frame5 = m2.my_frame_robot(root, data) frame5.grid(row=1, column=1) frame6 = m3.my_frame(root, data) frame6.grid(row=2, column=0) frame7 = m3.movement_frame(root, data) frame7.grid(row=2, column=1) frame8 = m3.conversation_frame(root, data) frame8.grid(row=2, column=2) root.mainloop()