Skip to content

Commit

Permalink
Test PR 1459
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Jan 13, 2025
1 parent 9ed145f commit e62aa2c
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import typia from "typia";

import { TestValidator } from "../../helpers/TestValidator";

export const test_pr_1459_llm_application_empty_parameters = (): void => {
const app = typia.llm.applicationOfValidate<Application, "chatgpt">();
const result = app.functions[0]!.validate({});
TestValidator.equals("success")(result.success)(true);
};

interface Application {
/**
* Something interesting.
*/
something(): void;
}

0 comments on commit e62aa2c

Please sign in to comment.