UPDATE: Implement Insert/Delete Cells

This commit is contained in:
Nicolás Hatcher
2024-05-09 07:13:51 +02:00
parent f752c90058
commit fd12881972
49 changed files with 830 additions and 172 deletions

View File

@@ -0,0 +1,15 @@
#![allow(clippy::unwrap_used)]
use crate::test::util::new_empty_model;
#[test]
fn test_fn_product_arguments() {
let mut model = new_empty_model();
// Incorrect number of arguments
model._set("A1", "=PRODUCT()");
model.evaluate();
// Error (Incorrect number of arguments)
assert_eq!(model._get_text("A1"), *"#ERROR!");
}