@@ -47,23 +47,23 @@ List<String> expectedAxisNames() {
4747 // ── typed metadata ───────────────────────────────────────────────────────
4848
4949 @ Test
50- void typedEntry_noVersion () throws Exception {
50+ void typedEntryNoVersion () throws Exception {
5151 MultiscalesMetadataImage <?> image = (MultiscalesMetadataImage <?>) MultiscaleImage .open (imageStoreHandle ());
5252 MultiscalesEntry entry = (MultiscalesEntry ) image .getMultiscalesEntry (0 );
5353 assertEquals ("test_image" , entry .name );
5454 assertNull (entry .version );
5555 }
5656
5757 @ Test
58- void typedEntry_level0ScaleValues () throws Exception {
58+ void typedEntryLevel0ScaleValues () throws Exception {
5959 MultiscalesMetadataImage <?> image = (MultiscalesMetadataImage <?>) MultiscaleImage .open (imageStoreHandle ());
6060 MultiscalesEntry entry = (MultiscalesEntry ) image .getMultiscalesEntry (0 );
6161 List <Double > expected = Arrays .asList (1.0 , 1.0 , 0.5 , 0.5 , 0.5 );
6262 assertEquals (expected , entry .datasets .get (0 ).coordinateTransformations .get (0 ).scale );
6363 }
6464
6565 @ Test
66- void openScaleLevel_level1HasExpectedShape () throws Exception {
66+ void openScaleLevelLevel1HasExpectedShape () throws Exception {
6767 MultiscaleImage image = MultiscaleImage .open (imageStoreHandle ());
6868 dev .zarr .zarrjava .core .Array level1 = image .openScaleLevel (1 );
6969 assertArrayEquals (new long []{1 , 2 , 4 , 8 , 8 }, level1 .metadata ().shape );
@@ -72,7 +72,7 @@ void openScaleLevel_level1HasExpectedShape() throws Exception {
7272 // ── omero + bioformats2raw ───────────────────────────────────────────────
7373
7474 @ Test
75- void omero_channels () throws Exception {
75+ void omeroChannels () throws Exception {
7676 dev .zarr .zarrjava .ome .v0_5 .MultiscaleImage image =
7777 dev .zarr .zarrjava .ome .v0_5 .MultiscaleImage .openMultiscaleImage (imageStoreHandle ());
7878 OmeroMetadata omero = image .getOmeroMetadata ();
@@ -84,7 +84,7 @@ void omero_channels() throws Exception {
8484 }
8585
8686 @ Test
87- void bioformats2rawLayout_value () throws Exception {
87+ void bioformats2rawLayoutValue () throws Exception {
8888 dev .zarr .zarrjava .ome .v0_5 .MultiscaleImage image =
8989 dev .zarr .zarrjava .ome .v0_5 .MultiscaleImage .openMultiscaleImage (imageStoreHandle ());
9090 assertEquals (Integer .valueOf (3 ), image .getBioformats2rawLayout ());
@@ -93,13 +93,13 @@ void bioformats2rawLayout_value() throws Exception {
9393 // ── labels ───────────────────────────────────────────────────────────────
9494
9595 @ Test
96- void labels_list () throws Exception {
96+ void labelsList () throws Exception {
9797 MultiscaleImage image = MultiscaleImage .open (imageStoreHandle ());
9898 assertEquals (Collections .singletonList ("nuclei" ), image .getLabels ());
9999 }
100100
101101 @ Test
102- void labels_openLabel () throws Exception {
102+ void labelsOpenLabel () throws Exception {
103103 MultiscaleImage image = MultiscaleImage .open (imageStoreHandle ());
104104 MultiscaleImage nuclei = image .openLabel ("nuclei" );
105105 assertInstanceOf (dev .zarr .zarrjava .ome .v0_5 .MultiscaleImage .class , nuclei );
@@ -109,7 +109,7 @@ void labels_openLabel() throws Exception {
109109 // ── HCS ──────────────────────────────────────────────────────────────────
110110
111111 @ Test
112- void hcs_plate () throws Exception {
112+ void hcsPlate () throws Exception {
113113 Plate plate = Plate .open (storeHandle (TESTDATA .resolve ("ome/v0.5_hcs" )));
114114 assertInstanceOf (dev .zarr .zarrjava .ome .v0_5 .Plate .class , plate );
115115 PlateMetadata meta = plate .getPlateMetadata ();
@@ -121,7 +121,7 @@ void hcs_plate() throws Exception {
121121 }
122122
123123 @ Test
124- void hcs_wellViaPlate () throws Exception {
124+ void hcsWellViaPlate () throws Exception {
125125 Plate plate = Plate .open (storeHandle (TESTDATA .resolve ("ome/v0.5_hcs" )));
126126 Well well = plate .openWell ("A/1" );
127127 assertInstanceOf (dev .zarr .zarrjava .ome .v0_5 .Well .class , well );
@@ -131,7 +131,7 @@ void hcs_wellViaPlate() throws Exception {
131131 }
132132
133133 @ Test
134- void hcs_fullNavigation () throws Exception {
134+ void hcsFullNavigation () throws Exception {
135135 Plate plate = Plate .open (storeHandle (TESTDATA .resolve ("ome/v0.5_hcs" )));
136136 MultiscaleImage fov = plate .openWell ("A/1" ).openImage ("0" );
137137 assertInstanceOf (dev .zarr .zarrjava .ome .v0_5 .MultiscaleImage .class , fov );
@@ -141,7 +141,7 @@ void hcs_fullNavigation() throws Exception {
141141 // ── write round-trips ────────────────────────────────────────────────────
142142
143143 @ Test
144- void write_createAndReopen () throws Exception {
144+ void writeCreateAndReopen () throws Exception {
145145 List <Axis > axes = Arrays .asList (
146146 new Axis ("z" , "space" , "micrometer" ),
147147 new Axis ("y" , "space" , "micrometer" ));
@@ -160,7 +160,7 @@ void write_createAndReopen() throws Exception {
160160 }
161161
162162 @ Test
163- void write_labelsRoundTrip () throws Exception {
163+ void writeLabelsRoundTrip () throws Exception {
164164 List <Axis > axes = Arrays .asList (
165165 new Axis ("z" , "space" , "micrometer" ),
166166 new Axis ("y" , "space" , "micrometer" ));
@@ -183,7 +183,7 @@ void write_labelsRoundTrip() throws Exception {
183183 }
184184
185185 @ Test
186- void write_plateRoundTrip () throws Exception {
186+ void writePlateRoundTrip () throws Exception {
187187 PlateMetadata meta = new PlateMetadata (
188188 Arrays .asList (new NamedEntry ("1" ), new NamedEntry ("2" )),
189189 Arrays .asList (new NamedEntry ("A" ), new NamedEntry ("B" )),
@@ -198,7 +198,7 @@ void write_plateRoundTrip() throws Exception {
198198 }
199199
200200 @ Test
201- void write_hcsFullIntegration () throws Exception {
201+ void writeHcsFullIntegration () throws Exception {
202202 StoreHandle plateHandle = storeHandle (TESTOUTPUT .resolve ("ome_v05_hcs_full" ));
203203 dev .zarr .zarrjava .ome .v0_5 .Plate .createPlate (plateHandle , new PlateMetadata (
204204 Collections .singletonList (new NamedEntry ("1" )),
0 commit comments