public void BindToLookUpCollection_StateUnderTest_ExpectedBehavior()
        {
            // Arrange
            DegreeToDecimalLatLongMapper degreeToDecimalLatLongMapper         = this.CreateDegreeToDecimalLatLongMapper();
            Dictionary <string, IDataLookUpCollection> globalLookUpCollection = new Dictionary <string, IDataLookUpCollection>();

            // Act
            try
            {
                degreeToDecimalLatLongMapper.BindToLookUpCollection(
                    globalLookUpCollection);
            }
            catch (Exception)
            {
                // Assert
                //NOP method
                Assert.Fail();
            }
        }