17 references to PortType
containerize.UnitTests (4)
Microsoft.NET.Build.Containers (3)
Microsoft.NET.Build.Containers.UnitTests (10)
ContainerHelpersTests.cs (4)
112[InlineData("80/tcp", true, 80, PortType.tcp, null)]
113[InlineData("80", true, 80, PortType.tcp, null)]
114[InlineData("125/dup", false, 125, PortType.tcp, ContainerHelpers.ParsePortError.InvalidPortType)]
119public void CanParsePort(string input, bool shouldParse, int? expectedPortNumber, PortType? expectedType, ContainerHelpers.ParsePortError? expectedError)