Skip to content

Commit

Permalink
test padded 6x8
Browse files Browse the repository at this point in the history
  • Loading branch information
spawnia committed Sep 13, 2024
1 parent 52c9067 commit 5258b06
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions tests/Microplate/CoordinatesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,21 +168,28 @@ public function testEquals(): void
*/
public static function dataProviderPaddedWells(): iterable
{
yield '12Wells' => [
yield '4x3' => [
new CoordinateSystem4x3(),
[
['paddedCoordinates' => 'A1', 'row' => 'A', 'column' => 1],
['paddedCoordinates' => 'C4', 'row' => 'C', 'column' => 4],
],
];
yield '48Wells' => [
yield '8x6' => [
new CoordinateSystem8x6(),
[
['paddedCoordinates' => 'A1', 'row' => 'A', 'column' => 1],
['paddedCoordinates' => 'F8', 'row' => 'F', 'column' => 8],
],
];
yield '96Wells' => [
yield '6x8' => [
new CoordinateSystem6x8(),
[
['paddedCoordinates' => 'A1', 'row' => 'A', 'column' => 1],
['paddedCoordinates' => 'H6', 'row' => 'H', 'column' => 6],
],
];
yield '12x8' => [
new CoordinateSystem12x8(),
[
['paddedCoordinates' => 'A01', 'row' => 'A', 'column' => 1],
Expand All @@ -191,7 +198,7 @@ public static function dataProviderPaddedWells(): iterable
['paddedCoordinates' => 'D10', 'row' => 'D', 'column' => 10],
],
];
yield '2x16Wells' => [
yield '2x16' => [
new CoordinateSystem2x16(),
[
['paddedCoordinates' => 'A1', 'row' => 'A', 'column' => 1],
Expand Down

0 comments on commit 5258b06

Please sign in to comment.