def test_is_event_thunderstorm_wind_false(self):
        """Ensures correct output from _is_event_thunderstorm_wind.

        In this case, the event type is not straight-line wind.
        """

        this_flag = storm_events_io._is_event_thunderstorm_wind(
            EVENT_TYPE_STRING_TORNADO_ALL_CAPS)
        self.assertFalse(this_flag)
    def test_is_event_thunderstorm_wind_some_caps(self):
        """Ensures correct output from _is_event_thunderstorm_wind.

        In this case, the event-type string has some caps.
        """

        this_flag = storm_events_io._is_event_thunderstorm_wind(
            EVENT_TYPE_STRING_SLTW_SOME_CAPS)
        self.assertTrue(this_flag)
    def test_is_event_thunderstorm_wind_trailing_whitespace(self):
        """Ensures correct output from _is_event_thunderstorm_wind.

        In this case, the event-type string has a lot of trailing whitespace.
        """

        this_flag = storm_events_io._is_event_thunderstorm_wind(
            EVENT_TYPE_STRING_SLTW_TRAILING_WHITESPACE)
        self.assertTrue(this_flag)
    def test_is_event_thunderstorm_wind_tornado(self):
        """Ensures correct output from _is_event_thunderstorm_wind.

        In this case, the event type is tornado.
        """

        this_flag = storm_events_io._is_event_thunderstorm_wind(
            EVENT_TYPE_STRING_NOT_SLW)
        self.assertFalse(this_flag)