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="Baseball.cs" company="Microsoft">
// Baseball
// </copyright>
// <summary>
// Defines the Baseball type.
// </summary>
// ---------------------------------------------------------------------------------------------------------------------
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace FabrikamSports
{
/// <summary>
/// concrete implementation of the Product
/// </summary>
public class Baseball : Product
{
/// <summary>
/// Initializes a new instance of the <see cref="Baseball"/> class.
/// </summary>
top0000,3public Baseball() : base("Base ball", "Represents the Baseball product")
{
0010,3}
}
}