| 387 | } |
| 388 | |
| 389 | TArray<FString> USluaTestCase::GetArrayStr() { |
| 390 | TArray<FString> array={"hello","world","nihao"}; |
| 391 | return array; |
| 392 | } |
| 393 | |
| 394 | void USluaTestCase::SetArrayStr(const TArray<FString>& array) { |
| 395 | for(auto it:array) { |
nothing calls this directly
no outgoing calls
no test coverage detected