@@ -67,7 +67,7 @@ public void FormatOutputData_VAE_Formatted()
6767 string expected = "Version and Editions:\n \t Version: XXXXXX\n \t Edition/Release: XXXXXX\n " ;
6868
6969 var builder = new StringBuilder ( ) ;
70- VersionAndEditionsSection ? section = new VersionAndEditionsSection
70+ VersionAndEditionsSection ? section = new ( )
7171 {
7272 Version = "XXXXXX" ,
7373 OtherEditions = "XXXXXX" ,
@@ -119,7 +119,7 @@ public void FormatOutputData_EDC_Formatted()
119119 string expected = "EDC:\n \t EDC: Yes\n " ;
120120
121121 var builder = new StringBuilder ( ) ;
122- EDCSection ? section = new EDCSection { EDC = YesNo . Yes } ;
122+ EDCSection ? section = new ( ) { EDC = YesNo . Yes } ;
123123 RedumpSystem ? system = RedumpSystem . SonyPlayStation ;
124124
125125 Formatter . FormatOutputData ( builder , section , system ) ;
@@ -152,7 +152,7 @@ public void FormatOutputData_ExtrasInvalid_Empty()
152152 string expected = string . Empty ;
153153
154154 var builder = new StringBuilder ( ) ;
155- ExtrasSection ? section = new ExtrasSection
155+ ExtrasSection ? section = new ( )
156156 {
157157 PVD = null ,
158158 PIC = null ,
@@ -172,7 +172,7 @@ public void FormatOutputData_Extras_Formatted()
172172 string expected = "Extras:\n \t Primary Volume Descriptor (PVD): XXXXXX\n \t Disc Key: XXXXXX\n \t Disc ID: XXXXXX\n \t Permanent Information & Control (PIC): XXXXXX\n \t Header: XXXXXX\n \t BCA: XXXXXX\n \t Security Sector Ranges: XXXXXX\n " ;
173173
174174 var builder = new StringBuilder ( ) ;
175- ExtrasSection ? section = new ExtrasSection
175+ ExtrasSection ? section = new ( )
176176 {
177177 PVD = "XXXXXX" ,
178178 DiscKey = "XXXXXX" ,
@@ -214,7 +214,7 @@ public void FormatOutputData_COPInvalid_Empty()
214214 string expected = string . Empty ;
215215
216216 var builder = new StringBuilder ( ) ;
217- CopyProtectionSection ? section = new CopyProtectionSection
217+ CopyProtectionSection ? section = new ( )
218218 {
219219 Protection = null ,
220220 AntiModchip = null ,
@@ -236,7 +236,7 @@ public void FormatOutputData_COP_Formatted()
236236 string expected = "Copy Protection:\n \t Copy Protection: XXXXXX\n \t SubIntention Data (SecuROM/LibCrypt): XXXXXX\n " ;
237237
238238 var builder = new StringBuilder ( ) ;
239- CopyProtectionSection ? section = new CopyProtectionSection
239+ CopyProtectionSection ? section = new ( )
240240 {
241241 AntiModchip = YesNo . Yes ,
242242 LibCrypt = YesNo . Yes ,
@@ -258,7 +258,7 @@ public void FormatOutputData_COPPSX_Formatted()
258258 string expected = "Copy Protection:\n \t Anti-modchip: Yes\n \t LibCrypt: Yes\n \t SubIntention Data (SecuROM/LibCrypt): XXXXXX\n \t Copy Protection: XXXXXX\n \t SubIntention Data (SecuROM/LibCrypt): XXXXXX\n " ;
259259
260260 var builder = new StringBuilder ( ) ;
261- CopyProtectionSection ? section = new CopyProtectionSection
261+ CopyProtectionSection ? section = new ( )
262262 {
263263 AntiModchip = YesNo . Yes ,
264264 LibCrypt = YesNo . Yes ,
@@ -284,7 +284,7 @@ public void FormatOutputData_TAWOInvalid_Minimal()
284284 string expected = "Tracks and Write Offsets:\n \t DAT:\n \n \n \n \n " ;
285285
286286 var builder = new StringBuilder ( ) ;
287- TracksAndWriteOffsetsSection ? section = new TracksAndWriteOffsetsSection ( ) ;
287+ TracksAndWriteOffsetsSection ? section = new ( ) ;
288288
289289 Formatter . FormatOutputData ( builder , section ) ;
290290
@@ -298,7 +298,7 @@ public void FormatOutputData_TAWO_Formatted()
298298 string expected = "Tracks and Write Offsets:\n \t DAT:\n \n XXXXXX\n \n \n \t Cuesheet: XXXXXX\n \t Write Offset: XXXXXX\n " ;
299299
300300 var builder = new StringBuilder ( ) ;
301- TracksAndWriteOffsetsSection ? section = new TracksAndWriteOffsetsSection
301+ TracksAndWriteOffsetsSection ? section = new ( )
302302 {
303303 ClrMameProData = "XXXXXX" ,
304304 Cuesheet = "XXXXXX" ,
@@ -341,7 +341,7 @@ public void FormatOutputData_DI_Formatted()
341341 string expected = "Dumping Info:\n \t Frontend Version: XXXXXX\n \t Dumping Program: XXXXXX\n \t Date: XXXXXX\n \t Parameters: XXXXXX\n \t Manufacturer: XXXXXX\n \t Model: XXXXXX\n \t Firmware: XXXXXX\n \t Reported Disc Type: XXXXXX\n \t C2 Error Count: XXXXXX\n " ;
342342
343343 var builder = new StringBuilder ( ) ;
344- DumpingInfoSection ? section = new DumpingInfoSection
344+ DumpingInfoSection ? section = new ( )
345345 {
346346 FrontendVersion = "XXXXXX" ,
347347 DumpingProgram = "XXXXXX" ,
0 commit comments