(self, r)
| 318 | pass |
| 319 | |
| 320 | def get_t(self, r): |
| 321 | self.test_case_count_label = Label( |
| 322 | gui, text="T = ", font=("calibre", 10, "bold"), width=17 |
| 323 | ) # Type 1 |
| 324 | self.test_case_count = Entry( |
| 325 | gui, textvariable=t, font=("calibre", 10, "normal") |
| 326 | ) |
| 327 | self.test_case_count_label.grid(row=r, column=0, pady=20, ipady=1) # Type 1 |
| 328 | self.test_case_count.grid(row=r, column=1) |
| 329 | |
| 330 | def get_n(self, r): |
| 331 | self.minimum_value_of_n = Entry( |
no outgoing calls
no test coverage detected