< Summary

Class:Azure.AI.FormRecognizer.Models.FormPageCollection
Assembly:Azure.AI.FormRecognizer
File(s):C:\Git\azure-sdk-for-net\sdk\formrecognizer\Azure.AI.FormRecognizer\src\FormPageCollection.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:19
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\formrecognizer\Azure.AI.FormRecognizer\src\FormPageCollection.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System.Collections.Generic;
 5using System.Collections.ObjectModel;
 6
 7namespace Azure.AI.FormRecognizer.Models
 8{
 9    /// <summary>
 10    /// A read-only collection of <see cref="FormPage"/> objects.
 11    /// </summary>
 12    public class FormPageCollection : ReadOnlyCollection<FormPage>
 13    {
 14        /// <inheritdoc/>
 4015        internal FormPageCollection(IList<FormPage> list) : base(list)
 16        {
 4017        }
 18    }
 19}

Methods/Properties

.ctor(...)