### Select Tool snforge ### Requested Feature Depends on #5. Right know, when execution tests with Native, the recordad gas usage is 0. ``` Running 2 test(s) from src/ [PASS] hello_starknet::test_add (l1_gas: ~0, l1_data_gas: ~0, l2_gas: ~0) [PASS] hello_starknet::test_factorial (l1_gas: ~0, l1_data_gas: ~0, l2_gas: ~0) ``` We should see how the gas usage is recorded in Cairo VM executions, and try to replicate it in Cairo Native executions. Solving this issue implies modifying [run_native_test_case](https://github.com/lambdaclass/starknet-foundry/blob/95ccb4d0adcd5fb57549f76af422bc0310922245/crates/forge-runner/src/running.rs?plain=1#L405). Until support for inner calls is added (#7), this issue should for tackled with simple tests only.