(self, r)
| 328 | self.test_case_count.grid(row=r, column=1) |
| 329 | |
| 330 | def get_n(self, r): |
| 331 | self.minimum_value_of_n = Entry( |
| 332 | gui, textvariable=n_min, font=("calibre", 10, "normal") |
| 333 | ) |
| 334 | self.min_max_values_of_n_label = Label( |
| 335 | gui, text=" <= n <=", font=("calibre", 10, "bold") |
| 336 | ) |
| 337 | self.maximum_value_of_n = Entry( |
| 338 | gui, textvariable=n_max, font=("calibre", 10, "normal") |
| 339 | ) |
| 340 | self.minimum_value_of_n.grid(row=r, column=0, padx=10, pady=10) |
| 341 | self.min_max_values_of_n_label.grid(row=r, column=1, ipadx=5, ipady=1) |
| 342 | self.maximum_value_of_n.grid(row=r, column=2, padx=(10, 10)) |
| 343 | |
| 344 | def get_m(self, r): |
| 345 | self.minimum_value_of_m = Entry( |
no outgoing calls
no test coverage detected