user code under test,
user code under test (not covered),
user code or test,
user code or test (not covered),
tagged
Modules/Types/Methods | Dynamic Coverage (blocks) |
---|
| User Code Under Test | User Or Test Code |
---|
first// ---------------------------------------------------------------------------------------------------------------------
// <copyright file="Basketball.cs" company="Microsoft">
// Concrete Product
// </copyright>
// <summary>
// Defines the Basketball type.
// </summary>
// ---------------------------------------------------------------------------------------------------------------------
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace FabrikamSports
{
/// <summary>
/// Basketball Product
/// </summary>
public class Basketball : Product
{
/// <summary>
/// Initializes a new instance of the <see cref="Basketball"/> class.
/// </summary>
top0000,3public Basketball() : base("Basket ball", "Represents the Basketball product")
{
0010,3}
}
}