@@ -225,7 +225,7 @@ func BenchmarkContains(b *testing.B) {
225225 }
226226}
227227
228- // BenchmarkFileSizePerformance measures parsing performance with different file sizes
228+ // BenchmarkFileSizePerformance measures parsing performance with different file sizes.
229229func BenchmarkFileSizePerformance (b * testing.B ) {
230230 baseFile , err := static .ReadFile ("static/sauce.txt" )
231231 if err != nil {
@@ -253,7 +253,7 @@ func BenchmarkFileSizePerformance(b *testing.B) {
253253 }
254254}
255255
256- // BenchmarkMemoryAllocation measures memory allocation patterns
256+ // BenchmarkMemoryAllocation measures memory allocation patterns.
257257func BenchmarkMemoryAllocation (b * testing.B ) {
258258 raw , err := static .ReadFile ("static/sauce.txt" )
259259 if err != nil {
@@ -267,7 +267,7 @@ func BenchmarkMemoryAllocation(b *testing.B) {
267267 }
268268}
269269
270- // BenchmarkJSONSerializationSize measures JSON serialization with different record sizes
270+ // BenchmarkJSONSerializationSize measures JSON serialization with different record sizes.
271271func BenchmarkJSONSerializationSize (b * testing.B ) {
272272 baseFile , err := static .ReadFile ("static/sauce.txt" )
273273 if err != nil {
@@ -296,7 +296,7 @@ func BenchmarkJSONSerializationSize(b *testing.B) {
296296 }
297297}
298298
299- // BenchmarkConcurrentParsing measures performance under concurrent access
299+ // BenchmarkConcurrentParsing measures performance under concurrent access.
300300func BenchmarkConcurrentParsing (b * testing.B ) {
301301 raw , err := static .ReadFile ("static/sauce.txt" )
302302 if err != nil {
@@ -310,7 +310,7 @@ func BenchmarkConcurrentParsing(b *testing.B) {
310310 })
311311}
312312
313- // BenchmarkInvalidRecords measures performance with invalid/malformed records
313+ // BenchmarkInvalidRecords measures performance with invalid/malformed records.
314314func BenchmarkInvalidRecords (b * testing.B ) {
315315 // Test with empty data
316316 b .Run ("Empty" , func (b * testing.B ) {
0 commit comments