()
| 1896 | |
| 1897 | #[test] |
| 1898 | fn test_parse_invalid_csv_float() { |
| 1899 | let file_name = "test/data/various_invalid_types/invalid_float.csv"; |
| 1900 | |
| 1901 | let error = invalid_csv_helper(file_name); |
| 1902 | assert_eq!( |
| 1903 | "Parser error: Error while parsing value '4.x4' as type 'Float32' for column 1 at line 4. Row data: '[4,4.x4,,false]'", |
| 1904 | error |
| 1905 | ); |
| 1906 | } |
| 1907 | |
| 1908 | #[test] |
| 1909 | fn test_parse_invalid_csv_int() { |
nothing calls this directly
no test coverage detected