Exemplo n.º 1
0
 def test_simple(self):
     matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
     MatrixBypass.simple(matrix)
Exemplo n.º 2
0
 def test_simple_empty(self):
     MatrixBypass.simple([])
Exemplo n.º 3
0
 def test_sample_empty_row(self):
     MatrixBypass.simple([[]])
Exemplo n.º 4
0
 def test_simple_none(self):
     MatrixBypass.simple(None)
Exemplo n.º 5
0
 def test_simple(self):
     matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
     MatrixBypass.simple(matrix)
Exemplo n.º 6
0
 def test_sample_empty_row(self):
     MatrixBypass.simple([[]])
Exemplo n.º 7
0
 def test_simple_empty(self):
     MatrixBypass.simple([])
Exemplo n.º 8
0
 def test_simple_none(self):
     MatrixBypass.simple(None)