AK.F1.Timing.Utility.HashCodeBuilderTest.to_string_returns_string_representation_of_hashcode C# (CSharp) Method

to_string_returns_string_representation_of_hashcode() private method

        public void to_string_returns_string_representation_of_hashcode()
        {
            var builder = HashCodeBuilder.New().Add(0).Add(1);

            Assert.Equal(builder.GetHashCode().ToString(), builder.ToString());
        }