Best Python code snippet using hypothesis
graphing_utils.py
Source:graphing_utils.py
...3 colors = {'road': 'black', 'car': 'blue'}4 fig = go.Figure()5 fig.update_xaxes(range=[0, 42], showgrid=True)6 fig.update_yaxes(range=[0, 29], showgrid=True)7 fig.add_shape(8 type="rect",9 x0=10, y0=0, x1=12, y1=29,10 fillcolor=colors['road'],11 layer="below"12 )13 fig.add_shape(14 type="rect",15 x0=26, y0=0, x1=28, y1=29,16 fillcolor=colors['road'],17 layer="below"18 )19 fig.add_shape(20 type="rect",21 x0=0, y0=18, x1=49, y1=20,22 fillcolor=colors['road'],23 layer="below"24 )25 fig.add_shape(26 type="rect",27 x0=0, y0=6, x1=10, y1=7,28 fillcolor=colors['road'],29 layer="below"30 )31 fig.add_shape(32 type="rect",33 x0=35, y0=20, x1=37, y1=29,34 fillcolor=colors['road'],35 layer="below"36 )37 fig.add_shape(38 type="line",39 x0=27, y0=0, x1=27, y1=30,40 line=dict(41 color="white",42 width=3,43 dash="dash"44 )45 )46 fig.add_shape(47 type="line",48 x0=11, y0=0, x1=11, y1=30,49 line=dict(50 color="white",51 width=3,52 dash="dash"53 )54 )55 fig.add_shape(56 type="line",57 x0=0, y0=19, x1=43, y1=19,58 line=dict(59 color="white",60 width=3,61 dash="dash"62 )63 )64 fig.add_shape(65 type="line",66 x0=36, y0=19, x1=36, y1=40,67 line=dict(68 color="white",69 width=3,70 dash="dash"71 )72 )73 fig.update_shapes(layer="below")74 fig.add_trace(go.Scatter()) # preventing other shapes from disappearing (probably plotly bug)75 fig.add_trace(go.Scatter())76 fig.add_trace(go.Scatter(77 x=[14, 30, 40, 2, 8, 24, 33],78 y=[1, 1, 17, 17, 28, 28, 28],...
test.py
Source:test.py
...118class ShapeListTester(unittest.TestCase):119 def test_constructor(self):120 sl = ShapeList()121 self.assertIsInstance(sl.shapes, list)122 def test_add_shape(self):123 sl = ShapeList()124 c = Circle(2)125 sl.add_shape(c)126 self.assertEqual(sl.shapes[0], c)127 def test_type_error(self):128 sl = ShapeList()129 with self.assertRaises(TypeError, msg="Test dupy siÄ nie powiódÅ ;("):130 sl.add_shape("dupa")131 def test_shapes_table(self):132 sl = ShapeList()133 s = Square(4)134 sl.add_shape(s)135 self.assertIsInstance(sl.get_shapes_table(), str)136 def test_largest_perimeter(self):137 sl = ShapeList()138 p = RegularPentagon(3)139 s = Square(5)140 t = Triangle(2, 4, 5)141 c = Circle(3)142 sl.add_shape(p)143 sl.add_shape(s)144 sl.add_shape(t)145 sl.add_shape(c)146 self.assertEqual(sl.get_largest_shape_by_perimeter(), s)147 def test_largest_area(self):148 sl = ShapeList()149 p = RegularPentagon(3)150 s = Square(5)151 t = Triangle(2, 4, 5)152 c = Circle(3)153 sl.add_shape(p)154 sl.add_shape(s)155 sl.add_shape(t)156 sl.add_shape(c)157 self.assertEqual(sl.get_largest_shape_by_area(), c)158class UMLdiagramTester(unittest.TestCase):159 def test_file_existence(self):160 self.assertTrue('UML.png' in listdir(), msg="UML.png doesn't exist")161def main():162 unittest.main(verbosity=2)163if __name__ == '__main__':...
field.py
Source:field.py
...3pio.templates.default = "plotly_dark"4def drawfield(titl=""):5 fig = go.FigureWidget()6 # Add field7 fig.add_shape(type="rect",x0=0,y0=0,x1=120,y1=80)8 fig.add_shape(type="rect",x0=0,y0=62,x1=18,y1=18)9 fig.add_shape(type="rect",x0=102,y0=18,x1=120,y1=62)10 fig.add_shape(type="rect",x0=0,y0=30,x1=6,y1=50)11 fig.add_shape(type="rect",x0=114,y0=30,x1=120,y1=50)12 fig.add_shape(type="line",x0=60,y0=0,x1=60,y1=80)13 fig.add_shape(type="circle",x0=51,y0=31,x1=69,y1=49)14 fig.add_trace(go.Scatter(x=[12,108,60],y=[40,40,40],mode="markers",15 hoverinfo='skip',line=dict(color="white")))16 fig.add_shape(type="rect",x0=120,y0=36,x1=121,y1=44)17 fig.add_shape(type="rect",x0=0,y0=36,x1=-1,y1=44)18 fig.update_xaxes(showgrid=False, zeroline=False,showticklabels=False,range=[-1.1, 121.1])19 fig.update_yaxes(showgrid=False, zeroline=False,showticklabels=False,range=[-1.5, 81.5])20 fig.update_shapes(dict(xref='x', yref='y')) 21 fig['layout']['yaxis']['autorange'] = "reversed"22 23 fig.add_trace(go.Scatter(x=[], y=[],mode='markers',name='Tackles',24 marker=dict(color=[],symbol=4,size=16),hoverinfo='skip'))25 fig.add_trace(go.Histogram2dContour(x=[],y=[],colorscale='OrRd',line=dict(width=0),26 contours=dict(coloring="heatmap"),hoverinfo='skip',27 showscale=False,opacity=0.8,name='Heatmap',28 ybins=dict(start=-5,end=85,size=10),29 xbins=dict(start=-5,end=125,size=10)))30 fig.update_layout(title=titl,autosize=False,width=1000,height=660,31 margin=dict(l=10,b=10,r=10,t=10))...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!