pub fn is_train_case(test_string: &str) -> bool
Expand description

Determines if a &str is Train-Case

    use cruet::cases::traincase::is_train_case;
    let mock_string: &str = "Foo-Bar-String-That-Is-Really-Really-Long";
    let asserted_bool: bool = is_train_case(mock_string);
    assert!(asserted_bool == true);
    use cruet::cases::traincase::is_train_case;
    let mock_string: &str = "foo-bar-string-that-is-really-really-long";
    let asserted_bool: bool = is_train_case(mock_string);
    assert!(asserted_bool == false);
    use cruet::cases::traincase::is_train_case;
    let mock_string: &str = "FooBarIsAReallyReallyLongString";
    let asserted_bool: bool = is_train_case(mock_string);
    assert!(asserted_bool == false);
    use cruet::cases::traincase::is_train_case;
    let mock_string: &str = "fooBarIsAReallyReallyLongString";
    let asserted_bool: bool = is_train_case(mock_string);
    assert!(asserted_bool == false);
    use cruet::cases::traincase::is_train_case;
    let mock_string: &str = "foo_bar_string_that_is_really_really_long";
    let asserted_bool: bool = is_train_case(mock_string);
    assert!(asserted_bool == false);
    use cruet::cases::traincase::is_train_case;
    let mock_string: &str = "Foo bar string that is really really long";
    let asserted_bool: bool = is_train_case(mock_string);
    assert!(asserted_bool == false);
    use cruet::cases::traincase::is_train_case;
    let mock_string: &str = "Foo Bar Is A Really Really Long String";
    let asserted_bool: bool = is_train_case(mock_string);
    assert!(asserted_bool == false);