Json.NET
Code Coverage Statistics for Source File

Newtonsoft.Json.Tests\TestObjects\PersonPropertyClass.cs

Symbol Coverage: 100.00% (3 of 3)

Branch Coverage: 100.00% (3 of 3)

Cyclomatic Complexity Avg: 1.00 Max:1

Code Lines: 3


L V Source
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5

  
6
namespace Newtonsoft.Json.Tests.TestObjects
7
{
8
  public class PersonPropertyClass
9
  {
10
    public Person Person { get; set; }
11

  
12
 2
    public PersonPropertyClass()
13
    {
14
 2
      Person = new WagePerson();
15
 2
    }
16
  }
17
}