def main(): """ Runs the MAIN PROGRAM. """ print('----------------------------------------------') print('Integration Testing of the INTEGRATED PROGRAM:') print('----------------------------------------------') my_dc = DataContainer() root = tkinter.Tk() m1.my_frame(root, my_dc) m2.my_frame(root, my_dc) m3.my_frame(root, my_dc) m4.my_frame(root, my_dc) root.mainloop()
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('----------------------------------------------') # Run in simulation mode: rb.SIMULATE = False # The root window and the DataContainer object: root = tkinter.Tk() dc = DataContainer() m1.morse_dictionary(dc) # The frames from each team member: frame1 = m1.my_frame(root, dc) frame2 = m2.my_frame(root, dc) frame3 = m3.my_frame(root, dc) frame4 = m4.my_frame(root, dc) # Grid the frames that exist: frames = [frame1, frame2, frame3, frame4] for k in range(len(frames)): if frames[k] is not None: frames[k].grid(row=1, column=k) # The mainloop: root.mainloop()
def main(): """ Runs the MAIN PROGRAM. """ print('----------------------------------------------') print('Integration Testing of the INTEGRATED PROGRAM:') print('----------------------------------------------') root = tkinter.Tk() dc = DataContainer() frame1 = m1.my_frame(root, dc) frame2 = m2.my_frame(root, dc) frame3 = m3.my_frame(root, dc) frame4 = m4.my_frame(root, dc) frames = [frame1, frame2, frame3, frame4] for k in range(len(frames)): if frames[k]: frames[k].grid(row=1, column=k + 1) root.mainloop()