AK.F1.Timing.Live.LiveDataTest.to_grid_column_throws_a_serialization_exception_when_current_session_type_is_none C# (CSharp) Method

to_grid_column_throws_a_serialization_exception_when_current_session_type_is_none() private method

        public void to_grid_column_throws_a_serialization_exception_when_current_session_type_is_none()
        {
            // Go through the entire column range, including out of bound data.
            for(byte column = 0; column < 15; ++column)
            {
                Assert.Throws<SerializationException>(() => LiveData.ToGridColumn(column, SessionType.None));
            }
        }