本文整理汇总了Python中mock_turtle.MockTurtle.color方法的典型用法代码示例。如果您正苦于以下问题:Python MockTurtle.color方法的具体用法?Python MockTurtle.color怎么用?Python MockTurtle.color使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mock_turtle.MockTurtle
的用法示例。
在下文中一共展示了MockTurtle.color方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_forgotten_end_fill
# 需要导入模块: from mock_turtle import MockTurtle [as 别名]
# 或者: from mock_turtle.MockTurtle import color [as 别名]
def test_forgotten_end_fill(self):
# SETUP
expected_report = """\
create_line
0
0
100
0
fill='#ff0000'
pensize=1
create_line
100
0
100
100
fill='#ff0000'
pensize=1
"""
# EXEC
t = MockTurtle()
t.color('red', 'blue')
t.begin_fill()
for _ in range(2):
t.fd(100)
t.right(90)
report = t.report
# VERIFY
self.assertEqual(expected_report.splitlines(), report)
示例2: test_get_color_rgb
# 需要导入模块: from mock_turtle import MockTurtle [as 别名]
# 或者: from mock_turtle.MockTurtle import color [as 别名]
def test_get_color_rgb(self):
t = MockTurtle()
expected_color = (1.0, 0.0, 0.5)
t.color(expected_color)
color = t.color()
self.assertEqual((expected_color, expected_color), color)
示例3: test_color
# 需要导入模块: from mock_turtle import MockTurtle [as 别名]
# 或者: from mock_turtle.MockTurtle import color [as 别名]
def test_color(self):
# SETUP
expected_report = """\
create_line
0
0
100
0
fill='#ff0080'"""
# EXEC
t = MockTurtle()
t.color(1.0, 0.0, 0.5)
t.fd(100)
report = t.report
# VERIFY
self.assertEqual(expected_report.splitlines(), report)
示例4: test_color_bad_range
# 需要导入模块: from mock_turtle import MockTurtle [as 别名]
# 或者: from mock_turtle.MockTurtle import color [as 别名]
def test_color_bad_range(self):
# SETUP
expected_report = """\
create_line
0
0
100
0
fill='#000000'
pensize=1"""
# EXEC
t = MockTurtle()
t.color(1.0, 0.0, 1.5) # Over 1.0 not allowed, fails to black.
t.fd(100)
report = t.report
# VERIFY
self.assertEqual(expected_report.splitlines(), report)
示例5: test_color_bad
# 需要导入模块: from mock_turtle import MockTurtle [as 别名]
# 或者: from mock_turtle.MockTurtle import color [as 别名]
def test_color_bad(self):
# SETUP
expected_report = """\
create_line
0
0
100
0
fill='#000000'
pensize=1"""
# EXEC
t = MockTurtle()
t.color((1.0, 0.0)) # Only two numbers, fails to black.
t.fd(100)
report = t.report
# VERIFY
self.assertEqual(expected_report.splitlines(), report)
示例6: test_color_name
# 需要导入模块: from mock_turtle import MockTurtle [as 别名]
# 或者: from mock_turtle.MockTurtle import color [as 别名]
def test_color_name(self):
# SETUP
expected_report = """\
create_line
0
0
100
0
fill='#0000ff'
pensize=1"""
# EXEC
t = MockTurtle()
t.color('blue')
t.fd(100)
report = t.report
# VERIFY
self.assertEqual(expected_report.splitlines(), report)
示例7: test_fill
# 需要导入模块: from mock_turtle import MockTurtle [as 别名]
# 或者: from mock_turtle.MockTurtle import color [as 别名]
def test_fill(self):
# SETUP
expected_report = """\
create_polygon
0
0
100
0
100
100
fill='#0000ff'
outline=''
create_line
0
0
100
0
fill='#ff0000'
pensize=1
create_line
100
0
100
100
fill='#ff0000'
pensize=1"""
# EXEC
t = MockTurtle()
t.color("red", "blue")
t.begin_fill()
for _ in range(2):
t.fd(100)
t.right(90)
t.end_fill()
report = t.report
# VERIFY
self.assertEqual(expected_report.splitlines(), report)
示例8: test_get_default_color
# 需要导入模块: from mock_turtle import MockTurtle [as 别名]
# 或者: from mock_turtle.MockTurtle import color [as 别名]
def test_get_default_color(self):
t = MockTurtle()
color = t.color()
self.assertEqual(('black', 'black'), color)
示例9: test_get_color_names
# 需要导入模块: from mock_turtle import MockTurtle [as 别名]
# 或者: from mock_turtle.MockTurtle import color [as 别名]
def test_get_color_names(self):
t = MockTurtle()
t.color('blue')
color = t.color()
self.assertIn(color, (('blue', 'blue'), ('blue1', 'blue1')))