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