< Summary

Information
Class: System.Text.Json.Serialization.Converters.ConcurrentQueueOfTConverter<T1, T2>
Assembly: System.Text.Json
File(s): C:\h\w\B31A098C\w\BB5A0A33\e\runtime-utils\Runner\runtime\src\libraries\System.Text.Json\src\System\Text\Json\Serialization\Converters\Collection\ConcurrentQueueOfTConverter.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 4
Coverable lines: 4
Total lines: 20
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity NPath complexity Sequence coverage
Add(TElement& modreq(...)100%110%

File(s)

C:\h\w\B31A098C\w\BB5A0A33\e\runtime-utils\Runner\runtime\src\libraries\System.Text.Json\src\System\Text\Json\Serialization\Converters\Collection\ConcurrentQueueOfTConverter.cs

#LineLine coverage
 1// Licensed to the .NET Foundation under one or more agreements.
 2// The .NET Foundation licenses this file to you under the MIT license.
 3
 4using System.Collections.Concurrent;
 5using System.Diagnostics.CodeAnalysis;
 6
 7namespace System.Text.Json.Serialization.Converters
 8{
 9    internal sealed class ConcurrentQueueOfTConverter<TCollection, TElement>
 10        : IEnumerableDefaultConverter<TCollection, TElement>
 11        where TCollection : ConcurrentQueue<TElement>
 12    {
 013        internal override bool CanPopulate => true;
 14
 15        protected override void Add(in TElement value, ref ReadStack state)
 016        {
 017            ((TCollection)state.Current.ReturnValue!).Enqueue(value);
 018        }
 19    }
 20}