fastapi_django_main_live / routers /ai /src /LineCommunicationTestCreator.gs
kenken999's picture
test
275b9f3
raw
history blame
584 Bytes
/**
* Creates a new LINE communication test case.
*/
function createTestCase(testConfig) {
var testCase = new LineTestCase(testConfig);
testCase.create();
}
/**
* Gets the test case configuration from the user.
*/
function getTestConfig() {
var ui = SpreadsheetApp.getUi();
var testConfigForm = ui.showSidebar(getTestConfigForm());
var testConfig = testConfigForm.getValues();
return testConfig;
}
/**
* Gets the test case configuration form.
*/
function getTestConfigForm() {
var form = HtmlService.createHtmlOutputFromFile('test-config-form');
return form;
}