MCPcopy Index your code
hub / github.com/python/cpython / test_entryconfigure_label

Method test_entryconfigure_label

Lib/test/test_tkinter/test_widgets.py:1528–1533  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1526 m1.destroy()
1527
1528 def test_entryconfigure_label(self):
1529 m1 = self.create()
1530 m1.add_command(label='test')
1531 self.assertEqual(m1.entrycget(1, 'label'), 'test')
1532 m1.entryconfigure(1, label='changed')
1533 self.assertEqual(m1.entrycget(1, 'label'), 'changed')
1534
1535 def test_entryconfigure_variable(self):
1536 m1 = self.create()

Callers

nothing calls this directly

Calls 5

createMethod · 0.95
add_commandMethod · 0.80
entrycgetMethod · 0.80
entryconfigureMethod · 0.80
assertEqualMethod · 0.45

Tested by

no test coverage detected