| File: MetricParameterTests.cs | Web Access | 
| Project: src\test\Generators\Microsoft.Gen.Metrics\Unit\Microsoft.Gen.Metrics.Unit.Tests.csproj (Microsoft.Gen.Metrics.Unit.Tests) | 
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Gen.Metrics.Model; using Xunit; namespace Microsoft.Gen.Metrics.Test; public class MetricParameterTests { [Fact] public void Fields_Should_BeInitialized() { var instance = new MetricParameter(); Assert.Empty(instance.Name); Assert.Empty(instance.Type); } }  |