US5754755A - Method and system for generating test scripts - Google Patents

Method and system for generating test scripts Download PDF

Info

Publication number
US5754755A
US5754755A US08/728,622 US72862296A US5754755A US 5754755 A US5754755 A US 5754755A US 72862296 A US72862296 A US 72862296A US 5754755 A US5754755 A US 5754755A
Authority
US
United States
Prior art keywords
placeholder
file
customizing
iterative
test
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Expired - Lifetime
Application number
US08/728,622
Inventor
Ross Faulkner Smith, Jr.
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Microsoft Technology Licensing LLC
Original Assignee
Microsoft Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Microsoft Corp filed Critical Microsoft Corp
Priority to US08/728,622 priority Critical patent/US5754755A/en
Assigned to MICROSOFT CORPORATION reassignment MICROSOFT CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: SMITH, ROSS FAULKNER, JR.
Application granted granted Critical
Publication of US5754755A publication Critical patent/US5754755A/en
Assigned to MICROSOFT TECHNOLOGY LICENSING, LLC reassignment MICROSOFT TECHNOLOGY LICENSING, LLC ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: MICROSOFT CORPORATION
Anticipated expiration legal-status Critical
Expired - Lifetime legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3668Software testing
    • G06F11/3672Test management
    • G06F11/3684Test management for test design, e.g. generating new test cases

Definitions

  • the present invention relates generally to a computer method and system for testing application programs, and, more specifically, to a method and system for generating test scripts to control the testing of application programs.
  • test script i.e., test program
  • a test script specifies a sequence of events, such as a mouse move, a mouse click, a key up, or a key down, that represent actions that may be taken by a user of the application program to be tested.
  • a testing engine reads the specification of events from the test script, and sends a simulation of the events to the application program to be tested.
  • the application program receives the simulated event just as if a user had generated the event using a mouse or keyboard.
  • a person testing the application program i.e., a tester
  • test script Once a test script is developed, it can be reused to test and retest the same application program as long as the sequence of events that controls a function to be tested is not changed by the developer of the application program. Because each application program may use different sequences of events to control similar functions or may support very different functions, such a test script cannot typically be used to test other application programs. Thus, an application-specific test script needs to be developed for each application program.
  • Some application programs expose their functionality through macro languages that can also be used to test the exposed functionality.
  • a user of the application program can develop a macro program to effect a desired behavior. For example, a user of a word processing program may develop a macro program that successively opens each file in a directory, prints the content of the opened file, and then closes the file.
  • a macro program has traditionally supplied a simulated sequence of input events to effect a behavior, some application programs now expose their internal data structures (e.g., "objects" in object-oriented parlance) to the macro program.
  • a developer of a family of application programs may use the same macro language to interface with each application program in the suite.
  • the use of the same macro language makes it easier for a user to learn how to develop macro programs for each application program in the suite. Once a user learns the macro language, the user need only learn the commands necessary to control the exposed functionality.
  • the application programs in an application suite are generally developed by the same developer who wants to present a consistent user interface throughout the application suite, the same sequence of events often control the same functionality in the different application programs. However, not all sequences of events are the same.
  • the application programs that provide a macro language can be tested using a test script written in the macro language.
  • a tester can develop a macro program to test various functions of an application program and then request the application program to execute the macro program. Since application suites typically share functions and reuse much of the same code, it would be advantageous to use a single test script to test a particular function, regardless of which application in the suite is being tested. Unfortunately, because each application program may have different sets of commands to access the functions, each test script macro program can only be used to test the application program for which it was developed. It would be desirable to have a testing mechanism that would allow use of a single test script for different application programs, but that would allow for differences between the application programs.
  • the present invention is directed to a method and system for generating an application-specific test script.
  • the application-specific test script contains test instructions for testing an application program.
  • An output file generator receives an indication of a test template file that has test instructions that contain placeholders. The placeholders indicate where application-specific placeholder values are to be logically inserted into the test template file.
  • the output file generator receives an ordered list of customizing files that have application-specific placeholder values. If a test instruction contains a placeholder, then the output file generator searches the customizing files according to the ordered list for a first placeholder value for the placeholder of the test instruction. When such a placeholder value is found, the output file generator inserts the placeholder value into the test instruction.
  • the output file generator stores the test instruction into the application-specific test script (i.e., output file). After the generating is complete, this application-specific test script can then be used to test the application.
  • the output file generator receives a test template file that has statements that are test instructions or iterative commands, and that has placeholders.
  • the placeholders indicate where application-specific placeholder values are to be logically inserted into the test template file.
  • the iterative commands have iterative instructions with an iterative placeholder.
  • the output file generator replaces the iterative placeholder with an indexed iterative placeholder, locates the placeholder in the customizing file, inserts an application-specific placeholder value for the indexed iterative placeholder, and stores the iterative instruction with the inserted placeholder value into the application-specific test script.
  • FIG. 1 illustrates an overview block diagram of an apparatus for generating test scripts in a preferred embodiment.
  • FIG. 2 illustrates a sample test template file
  • FIGS. 3A-3C illustrate customizing files.
  • FIG. 4 illustrates the application-specific test script file generated from the template test script and the customizing files.
  • FIG. 5 is a flow diagram of an output file generator.
  • the present invention provides a method and system for customizing an application-independent test template to generate an application-specific test script.
  • an output file generator inputs a test template and application-specific customizing files.
  • the test template contains common instructions that can be used to test various application programs.
  • the test template also contains placeholders that are to be replaced with application-specific data from the customizing files.
  • Each application program has an associated customizing file that contains values to substituted for the placeholders in the test template.
  • the output file generator creates a file that contains the common instructions of the test template with the placeholders replaced with the values from the customizing file for that application program.
  • the test template may also contain control commands (e.g., an if-then-else type command) that indicate which common instructions should be included in the generated test script.
  • the instructions and control commands are referred to as statements of the test template.
  • the application-specific test script can then be used to test the application program. In this way, application-independent instructions can be shared when testing and yet the testing can be customized to be application specific.
  • the customizing files for the application programs can be developed to inherit the placeholder values of other customizing files.
  • This inheritance of the placeholder values of other customizing files allows for further sharing of testing instructions. For example, if a customizing file for a spreadsheet program is the same as a customizing file for a word processing program, except that the word processing program has placeholder values directed to testing a spell checker, then the customizing file for the word processing program can inherit the placeholder values from the customizing file for the spreadsheet program. In this way, a tester need not store the same placeholder values in multiple customizing files. Rather, the common placeholder values can be placed in a single customizing file that is inherited by other customizing files.
  • the inheritance of customizing files is indicated by providing an ordered list of customizing files to the output file generator.
  • the output file generator scans through the customizing files in order searching for a value for each placeholder.
  • the output file generator selects as a placeholder value the first such value found.
  • the placeholder value in a customizing file that is ordered before another customizing file effectively overrides any placeholder values in the other customizing files.
  • a customizing file not only can share placeholder values from other customizing files, but also can override placeholder values in other customizing files. Consistent with inheritance terminology, a customizing file that is inherited may be referred to as a base customizing file and a customizing file that inherits another customizing file may be referred to as a derived customizing file.
  • the output file generator also allows the customizing files to contain placeholders within placeholder values.
  • placeholder values can recursively contain placeholders. Whenever the output file generator replaces a placeholder with a placeholder value, it searches that placeholder value for any recursive placeholders and replaces any such placeholders that are found by searching through the customizing files.
  • the output file generator also can dynamically generate placeholders for a test script. For example, a tester may want to define a series of placeholders in a test template file with similar names. Such a tester may want to test 10 different functions of the application program with similar instructions except with different function names depending on the application program.
  • the output file generator allows the tester to specify an iterative control command with an index and iterative statements with an indexed placeholder.
  • the iterative statements can be instructions or control commands.
  • the output file generator stores the iterative in the test script with the indexed placeholder replaced with a placeholder value from a customizing file.
  • the iterative control command is the ##FOR/##NEXT statement and the iterative statement is the instruction "execute function*" where "*" is the index and "function*" is the indexed placeholder.
  • the output file generator processes the iterative control command as if the instructions "execute function1," "execute function2,” and so on to wherein the template test script.
  • FIG. 1 illustrates an overview block diagram of an apparatus for generating test scripts in a preferred embodiment.
  • the computer system 100 includes a CPU 102 and a memory 104.
  • the memory includes an output file generator 110, a template test script 112, and customizing files 114.
  • the computer system also includes input devices 106 and output devices 108.
  • the input devices preferably include a keyboard and a mouse.
  • the output devices preferably include a display device, such as a CRT.
  • the CPU, memory, input devices, and output devices are interconnected by a bus 116.
  • the output file generator may be stored as instructions on a computer-readable medium such as a disk.
  • FIG. 2 illustrates a sample test template file.
  • the test template file contains a file type indicator, common macro instructions, control commands, and placeholders.
  • the file type indicator 201 indicates that this file contains a template test script.
  • the macro language is Visual Basic by Microsoft Corporation.
  • the control commands 202-204, 210, 213, 214, and 216, are each prefixed with "##". These control commands direct the output file generator to include certain instructions in the application-specific test script based on the value for various placeholders.
  • the placeholders are delineated by " ⁇ " and " ⁇ ! and contain the name of the placeholder.
  • a placeholder can be located in either an instruction or a control command.
  • the output file generator processes the test template file one statement at a time. When the output file generator encounters a control command, it replaces any placeholders in the command and performs the command. When the output file generator encounters an instruction, it replaces any placeholders and outputs the instruction as part of the application-specific test script.
  • the output file generator replaces a placeholder by searching for a placeholder value with that placeholder in the ordered list of customizing files.
  • the ##INCLUDE command designates the ordered list of customizing files to be searched to find placeholder values.
  • the template test script contains three ##INCLUDE commands 202-204, which indicate that the output file generator should search customizing files "WORD.INC,” "EXCEL.INC,” and "COMMON.INC” in that order.
  • This ordering results in a type of inheritance in that the values in a customizing file override values for the same placeholder in other customizing files based on the ordering of the customizing files.
  • a tester can alternatively designate an ordered list of customizing files by inputting the names of the customizing files directly into a user interface provided by the output file generator.
  • the customizing files can be designated by both the ##INCLUDE command and the user interface of the output file generator.
  • the ##IF command is a conditional command similar to the "if" statement of programming languages.
  • the format of the ##IF command is:
  • Each " ⁇ data#>" can be a placeholder, an instruction, or another control command.
  • the ⁇ data1> value equals the ⁇ data2> value
  • the ⁇ data3> value is processed by the output file generator, else the ⁇ data4> value is processed by the output file generator.
  • the ⁇ data3> and ⁇ data4> values are instructions that are stored in the application-specific test script. For example, in the ##IF command 214, if the value of the SPELLCHECKER placeholder is "TRUE,” then output file generator evaluates the placeholder SPELLTEST, which contains instructions for testing the spellchecker.
  • the control commands can also include an iterative command.
  • the iterative command allows placeholders to be dynamically generated in an iterative manner.
  • the iterative command has the following format:
  • the ##FOR command indicates that iteration statements follow.
  • the ##NEXT indicates the end of the iteration statements that are to be repeated over the range of numerical values a to b.
  • the indexed placeholder within the iteration statements is replaced by a placeholder with its asterisk (*) by a value starting with the value of a and sequentially increasing to the value of b.
  • the placeholder takes on the value OBJECT1, OBJECT2, OBJECT3, etc.
  • the output file generator searches the customizing files for a values for the generated placeholders, replaces the generated placeholders with those values, and stores the instructions 211, 212 in the application-specific test script.
  • "a" and "b" may be placeholders, in which case, their value would be retrieved from a customizing file prior to the evaluation of the ##FOR command.
  • FIGS. 3A-3C illustrate the customizing files.
  • FIG. 3A is the customizing file named "COMMON.INC.” This file contains placeholder values that are common to each application program that is to be tested with a test script file generated from the template test script of FIG. 2.
  • the placeholder "SPELLCHECKER” 3A3 is set to "FALSE" to indicate that the default is to generate a test script that does not test a spellchecker.
  • FIG. 3B is the customizing file named "EXCEL.INC.”
  • This file inherits the customizing file "COMMON.INC” (because of the ordering of the include commands in the template test script) and contains the placeholder values for generating a test script for the EXCEL application program.
  • This file contains placeholder values "OBJECT1," "OBJECT2” and "OBJECT3" 3B3-3B4 for the iterative command.
  • FIG. 3C is the customizing file named "WORD.INC.” This file inherits the customizing file EXCEL.INC and contains placeholder values that override inherited placeholder values and that define new placeholder values.
  • the placeholder value for the placeholder SPELLCHECKER 3C6 overrides the placeholder value in the customizing file "COMMON.INC.”
  • the placeholder value for the placeholder SPELLTEST 3C7 recursively contains placeholders and contains an instruction and a control command.
  • the file contains the values 3C11-3C15 for these placeholders.
  • FIG. 4 illustrates the application-specific test script generated from the template test script and the customizing files.
  • FIG. 5 is a flow diagram of an output file generator.
  • the output file generator receives the names of customizing files either from a user or from the ##INCLUDE commands of the test template file.
  • the output file generator also receives the name of the test template file.
  • the output file generator creates a customized test script in accordance with the test script file and the customizing files.
  • step 501 the generator opens the customizing files indicated by the tester through the user interface. These customizing files are inherited by any of the customizing files indicated by the ##INCLUDE commands within the test template file.
  • the generator opens the test template file.
  • steps 503-508a the generator loops processing each statement in the test template file.
  • the generator selects the next statement in the test template file starting with the first.
  • step 504 if all the statements have already been processed, then the generator is complete, else the generator continues at step 505.
  • step 505a if there is a placeholder in the selected statement, then the generator continues at step 505a, else the generator continues at step 506.
  • step 505a the generator searches through the customizing files for the first occurrence of a placeholder value for the placeholder within the selected statement. The generator then replaces the placeholder with the selected placeholder value and loops to see if there are any more placeholder values in the selected statement. By looping to see if there are any other placeholder values in the selected statement, the generator effectively recursively replaces any placeholders within placeholder values.
  • step 506 if the selected statement is an ##INCLUDE command, then the generator continues at step 506a, else the generator continues at step 507.
  • step 506a the generator opens the customizing file and links it into a list of customizing files to search for placeholder values and loops to step 503 to select the next statement in the template test script.
  • step 527 if the selected statement is a ##FOR command, then the generator continues at step 507a, else the generator continues at step 508.
  • step 507a the generator processes the ##FOR command by logically adding to the template script file occurrences of the iterative statements with their index placeholders replaced with placeholder values and then loops to step 503 to select the first of the iterative statements.
  • step 508 if the selected statement contains the ##IF command, then the processing continues at step 508a, else the processing continues at step 509.
  • step 508a the generator processes the ##IF command by determining if the condition is true and logically adding the appropriate statements to the test template file and loops to step 503 to select the first of the logically added statements.
  • step 509 the generator stores the selected line into the application-specific file and loops to step 503 to select the next statement from the template test script.
  • the present invention is used to generate a page on the WORLD WIDE WEB ("WEB page").
  • WEB page typically includes graphics and is coded using hypertext markup language (“HTML").
  • HTML hypertext markup language
  • a user requests that it be downloaded from a server, on which it resides, onto a local computer. Because the WEB page typically includes graphics, the downloading is time-consuming.
  • a template file for a WEB page is stored on the local computer, and customizing files are stored on the server. When a user wishes to view a WEB page, to save time, only the customizing files are downloaded.
  • the output file generator of the present invention generates a WEB page using the user-independent WEB page template file and the customizing data files.
  • the HTML template file might contain placeholders for stock price and volume data.
  • the customizing files stored on the server contain the current price and volume information that would be inserted into the HTML output file (application-specific test script).
  • the present invention is used to generate localized versions of a computer program (or more generally any document).
  • the template file contains the computer program along with placeholders, and a customizing file for each country contains the language-specific (e.g., German and Japanese) string.
  • the output file would contain the localized computer program.
  • the generator of the present invention can be used to generate virtually any type of customized document.
  • the generator of the present invention could be used to generate resumes for different individuals from a user-independent resume template and user-specific customizing files.
  • the generator is particularly useful in generating documents that describe a test plan that is customized to an application.
  • file refers to a collection of data that may or may not be a file system file. Modifications within the spirit of the present invention will be apparent to those skilled in the art. The scope of the present invention is defined in the claims that follow.

Abstract

A method and system in a computer system for generating an application-specific test script file. The application-specific test script file contains test instructions for testing an application program. The system receives a test template file that has test instructions that contain placeholders. The placeholders indicate where application-specific placeholder values are to be logically inserted into the test template file. The system receives an ordered list of customizing files that have application-specific placeholder values. The system then searches the customizing files according to the ordered list for a first placeholder value for each placeholder of the test instruction. When such a placeholder value is found, the system replaces the placeholder with the placeholder value in the test instruction and stores the test instruction into the application-specific test script file.

Description

TECHNICAL FIELD
The present invention relates generally to a computer method and system for testing application programs, and, more specifically, to a method and system for generating test scripts to control the testing of application programs.
BACKGROUND OF THE INVENTION
Application programs have become increasingly more complex as they provide more and more features. As the complexity increases, the probability that an application program will have a programming error ("bug") increases dramatically. To reduce the probability of distributing an application program with a programming error, developers of application programs perform extensive testing. Because of the importance of thorough testing and because such testing can be very time-consuming, the application developers have developed extensive automated testing procedures.
Some conventional testing procedures involve first manually writing a test script (i.e., test program) and then using that test script to automatically test the application program. A test script specifies a sequence of events, such as a mouse move, a mouse click, a key up, or a key down, that represent actions that may be taken by a user of the application program to be tested. To test an application program, a testing engine reads the specification of events from the test script, and sends a simulation of the events to the application program to be tested. The application program receives the simulated event just as if a user had generated the event using a mouse or keyboard. A person testing the application program (i.e., a tester) can see how the application program processes the events and can determine whether the application program is functioning correctly.
Once a test script is developed, it can be reused to test and retest the same application program as long as the sequence of events that controls a function to be tested is not changed by the developer of the application program. Because each application program may use different sequences of events to control similar functions or may support very different functions, such a test script cannot typically be used to test other application programs. Thus, an application-specific test script needs to be developed for each application program.
Some application programs expose their functionality through macro languages that can also be used to test the exposed functionality. A user of the application program can develop a macro program to effect a desired behavior. For example, a user of a word processing program may develop a macro program that successively opens each file in a directory, prints the content of the opened file, and then closes the file. Although a macro program has traditionally supplied a simulated sequence of input events to effect a behavior, some application programs now expose their internal data structures (e.g., "objects" in object-oriented parlance) to the macro program.
To provide a consistent user interface, a developer of a family of application programs, referred to as an application suite, may use the same macro language to interface with each application program in the suite. The use of the same macro language makes it easier for a user to learn how to develop macro programs for each application program in the suite. Once a user learns the macro language, the user need only learn the commands necessary to control the exposed functionality. Also, since the application programs in an application suite are generally developed by the same developer who wants to present a consistent user interface throughout the application suite, the same sequence of events often control the same functionality in the different application programs. However, not all sequences of events are the same.
The application programs that provide a macro language can be tested using a test script written in the macro language. A tester can develop a macro program to test various functions of an application program and then request the application program to execute the macro program. Since application suites typically share functions and reuse much of the same code, it would be advantageous to use a single test script to test a particular function, regardless of which application in the suite is being tested. Unfortunately, because each application program may have different sets of commands to access the functions, each test script macro program can only be used to test the application program for which it was developed. It would be desirable to have a testing mechanism that would allow use of a single test script for different application programs, but that would allow for differences between the application programs.
SUMMARY OF THE INVENTION
The present invention is directed to a method and system for generating an application-specific test script. The application-specific test script contains test instructions for testing an application program. An output file generator receives an indication of a test template file that has test instructions that contain placeholders. The placeholders indicate where application-specific placeholder values are to be logically inserted into the test template file. The output file generator receives an ordered list of customizing files that have application-specific placeholder values. If a test instruction contains a placeholder, then the output file generator searches the customizing files according to the ordered list for a first placeholder value for the placeholder of the test instruction. When such a placeholder value is found, the output file generator inserts the placeholder value into the test instruction. The output file generator then stores the test instruction into the application-specific test script (i.e., output file). After the generating is complete, this application-specific test script can then be used to test the application.
In another aspect of the present invention, the output file generator receives a test template file that has statements that are test instructions or iterative commands, and that has placeholders. The placeholders indicate where application-specific placeholder values are to be logically inserted into the test template file. The iterative commands have iterative instructions with an iterative placeholder. For each iteration of an iterative command, the output file generator replaces the iterative placeholder with an indexed iterative placeholder, locates the placeholder in the customizing file, inserts an application-specific placeholder value for the indexed iterative placeholder, and stores the iterative instruction with the inserted placeholder value into the application-specific test script.
BRIEF DESCRIPTION OF THE DRAWINGS
FIG. 1 illustrates an overview block diagram of an apparatus for generating test scripts in a preferred embodiment.
FIG. 2 illustrates a sample test template file.
FIGS. 3A-3C illustrate customizing files.
FIG. 4 illustrates the application-specific test script file generated from the template test script and the customizing files.
FIG. 5 is a flow diagram of an output file generator.
DETAILED DESCRIPTION OF THE INVENTION
The present invention provides a method and system for customizing an application-independent test template to generate an application-specific test script. In one embodiment, an output file generator inputs a test template and application-specific customizing files. The test template contains common instructions that can be used to test various application programs. The test template also contains placeholders that are to be replaced with application-specific data from the customizing files. Each application program has an associated customizing file that contains values to substituted for the placeholders in the test template. To generate an application-specific test script, the output file generator creates a file that contains the common instructions of the test template with the placeholders replaced with the values from the customizing file for that application program. The test template may also contain control commands (e.g., an if-then-else type command) that indicate which common instructions should be included in the generated test script. The instructions and control commands are referred to as statements of the test template. The application-specific test script can then be used to test the application program. In this way, application-independent instructions can be shared when testing and yet the testing can be customized to be application specific.
The customizing files for the application programs can be developed to inherit the placeholder values of other customizing files. This inheritance of the placeholder values of other customizing files allows for further sharing of testing instructions. For example, if a customizing file for a spreadsheet program is the same as a customizing file for a word processing program, except that the word processing program has placeholder values directed to testing a spell checker, then the customizing file for the word processing program can inherit the placeholder values from the customizing file for the spreadsheet program. In this way, a tester need not store the same placeholder values in multiple customizing files. Rather, the common placeholder values can be placed in a single customizing file that is inherited by other customizing files. In one embodiment, the inheritance of customizing files is indicated by providing an ordered list of customizing files to the output file generator. When generating an application-specific test script, the output file generator scans through the customizing files in order searching for a value for each placeholder. The output file generator selects as a placeholder value the first such value found. Thus, the placeholder value in a customizing file that is ordered before another customizing file effectively overrides any placeholder values in the other customizing files. Thus, a customizing file not only can share placeholder values from other customizing files, but also can override placeholder values in other customizing files. Consistent with inheritance terminology, a customizing file that is inherited may be referred to as a base customizing file and a customizing file that inherits another customizing file may be referred to as a derived customizing file.
The output file generator also allows the customizing files to contain placeholders within placeholder values. Thus, placeholder values can recursively contain placeholders. Whenever the output file generator replaces a placeholder with a placeholder value, it searches that placeholder value for any recursive placeholders and replaces any such placeholders that are found by searching through the customizing files.
The output file generator also can dynamically generate placeholders for a test script. For example, a tester may want to define a series of placeholders in a test template file with similar names. Such a tester may want to test 10 different functions of the application program with similar instructions except with different function names depending on the application program. The output file generator allows the tester to specify an iterative control command with an index and iterative statements with an indexed placeholder. The iterative statements can be instructions or control commands. For each iteration, the output file generator stores the iterative in the test script with the indexed placeholder replaced with a placeholder value from a customizing file. For example, the following is an example of an iterative command: ##EQU1## The iterative control command is the ##FOR/##NEXT statement and the iterative statement is the instruction "execute function*" where "*" is the index and "function*" is the indexed placeholder. The output file generator processes the iterative control command as if the instructions "execute function1," "execute function2," and so on to wherein the template test script.
FIG. 1 illustrates an overview block diagram of an apparatus for generating test scripts in a preferred embodiment. The computer system 100 includes a CPU 102 and a memory 104. The memory includes an output file generator 110, a template test script 112, and customizing files 114. The computer system also includes input devices 106 and output devices 108. The input devices preferably include a keyboard and a mouse. The output devices preferably include a display device, such as a CRT. The CPU, memory, input devices, and output devices are interconnected by a bus 116. The output file generator may be stored as instructions on a computer-readable medium such as a disk.
FIG. 2 illustrates a sample test template file. The test template file contains a file type indicator, common macro instructions, control commands, and placeholders. The file type indicator 201 indicates that this file contains a template test script. In the example, the macro language is Visual Basic by Microsoft Corporation. The control commands 202-204, 210, 213, 214, and 216, are each prefixed with "##". These control commands direct the output file generator to include certain instructions in the application-specific test script based on the value for various placeholders. The placeholders are delineated by " {" and "}!" and contain the name of the placeholder. A placeholder can be located in either an instruction or a control command.
The output file generator processes the test template file one statement at a time. When the output file generator encounters a control command, it replaces any placeholders in the command and performs the command. When the output file generator encounters an instruction, it replaces any placeholders and outputs the instruction as part of the application-specific test script. The output file generator replaces a placeholder by searching for a placeholder value with that placeholder in the ordered list of customizing files.
The following is a list of the control commands in one embodiment:
______________________________________                                    
          ##INCLUDE                                                       
          ##IF/##ELSE/#ENDIF                                              
          ##FOR/##NEXT                                                    
______________________________________                                    
The ##INCLUDE command designates the ordered list of customizing files to be searched to find placeholder values. In this example, the template test script contains three ##INCLUDE commands 202-204, which indicate that the output file generator should search customizing files "WORD.INC," "EXCEL.INC," and "COMMON.INC" in that order. This ordering results in a type of inheritance in that the values in a customizing file override values for the same placeholder in other customizing files based on the ordering of the customizing files. A tester can alternatively designate an ordered list of customizing files by inputting the names of the customizing files directly into a user interface provided by the output file generator. Also, the customizing files can be designated by both the ##INCLUDE command and the user interface of the output file generator.
The ##IF command is a conditional command similar to the "if" statement of programming languages. The format of the ##IF command is:
______________________________________                                    
##IF <data1>#=#<data2>THEN <data3>                                        
##ELSE <data4>                                                            
##ENDIF                                                                   
______________________________________                                    
Each "<data#>" can be a placeholder, an instruction, or another control command. When the <data1> value equals the <data2> value, then the <data3> value is processed by the output file generator, else the <data4> value is processed by the output file generator. Generally, the <data3> and <data4> values are instructions that are stored in the application-specific test script. For example, in the ##IF command 214, if the value of the SPELLCHECKER placeholder is "TRUE," then output file generator evaluates the placeholder SPELLTEST, which contains instructions for testing the spellchecker.
The control commands can also include an iterative command. The iterative command allows placeholders to be dynamically generated in an iterative manner. The iterative command has the following format:
##FOR <placeholder*>=a TO b <statement> ##NEXT
The ##FOR command indicates that iteration statements follow. The ##NEXT indicates the end of the iteration statements that are to be repeated over the range of numerical values a to b. For each iteration of the iterative command, the indexed placeholder within the iteration statements is replaced by a placeholder with its asterisk (*) by a value starting with the value of a and sequentially increasing to the value of b. For example, for each iteration of the iterative commands 210, 213, the placeholder takes on the value OBJECT1, OBJECT2, OBJECT3, etc. The output file generator searches the customizing files for a values for the generated placeholders, replaces the generated placeholders with those values, and stores the instructions 211, 212 in the application-specific test script. In addition, "a" and "b" may be placeholders, in which case, their value would be retrieved from a customizing file prior to the evaluation of the ##FOR command.
FIGS. 3A-3C illustrate the customizing files. FIG. 3A is the customizing file named "COMMON.INC." This file contains placeholder values that are common to each application program that is to be tested with a test script file generated from the template test script of FIG. 2. The placeholder "SPELLCHECKER" 3A3 is set to "FALSE" to indicate that the default is to generate a test script that does not test a spellchecker.
FIG. 3B is the customizing file named "EXCEL.INC." This file inherits the customizing file "COMMON.INC" (because of the ordering of the include commands in the template test script) and contains the placeholder values for generating a test script for the EXCEL application program. This file contains placeholder values "OBJECT1," "OBJECT2" and "OBJECT3" 3B3-3B4 for the iterative command.
FIG. 3C is the customizing file named "WORD.INC." This file inherits the customizing file EXCEL.INC and contains placeholder values that override inherited placeholder values and that define new placeholder values. The placeholder value for the placeholder SPELLCHECKER 3C6 overrides the placeholder value in the customizing file "COMMON.INC." The placeholder value for the placeholder SPELLTEST 3C7 recursively contains placeholders and contains an instruction and a control command. The file contains the values 3C11-3C15 for these placeholders.
FIG. 4 illustrates the application-specific test script generated from the template test script and the customizing files.
FIG. 5 is a flow diagram of an output file generator. The output file generator receives the names of customizing files either from a user or from the ##INCLUDE commands of the test template file. The output file generator also receives the name of the test template file. The output file generator creates a customized test script in accordance with the test script file and the customizing files. In step 501, the generator opens the customizing files indicated by the tester through the user interface. These customizing files are inherited by any of the customizing files indicated by the ##INCLUDE commands within the test template file. In step 502, the generator opens the test template file. In steps 503-508a, the generator loops processing each statement in the test template file. In step 503, the generator selects the next statement in the test template file starting with the first. In step 504, if all the statements have already been processed, then the generator is complete, else the generator continues at step 505. In step 505, if there is a placeholder in the selected statement, then the generator continues at step 505a, else the generator continues at step 506. In step 505a, the generator searches through the customizing files for the first occurrence of a placeholder value for the placeholder within the selected statement. The generator then replaces the placeholder with the selected placeholder value and loops to see if there are any more placeholder values in the selected statement. By looping to see if there are any other placeholder values in the selected statement, the generator effectively recursively replaces any placeholders within placeholder values. In step 506, if the selected statement is an ##INCLUDE command, then the generator continues at step 506a, else the generator continues at step 507. In step 506a, the generator opens the customizing file and links it into a list of customizing files to search for placeholder values and loops to step 503 to select the next statement in the template test script. In step 527, if the selected statement is a ##FOR command, then the generator continues at step 507a, else the generator continues at step 508. In step 507a, the generator processes the ##FOR command by logically adding to the template script file occurrences of the iterative statements with their index placeholders replaced with placeholder values and then loops to step 503 to select the first of the iterative statements. In step 508, if the selected statement contains the ##IF command, then the processing continues at step 508a, else the processing continues at step 509. In step 508a, the generator processes the ##IF command by determining if the condition is true and logically adding the appropriate statements to the test template file and loops to step 503 to select the first of the logically added statements. In step 509, the generator stores the selected line into the application-specific file and loops to step 503 to select the next statement from the template test script.
In an alternative embodiment, the present invention is used to generate a page on the WORLD WIDE WEB ("WEB page"). A WEB page typically includes graphics and is coded using hypertext markup language ("HTML"). Usually, when a user wishes to view a WEB page, the user requests that it be downloaded from a server, on which it resides, onto a local computer. Because the WEB page typically includes graphics, the downloading is time-consuming. Using the present invention, a template file for a WEB page is stored on the local computer, and customizing files are stored on the server. When a user wishes to view a WEB page, to save time, only the customizing files are downloaded. Then, the output file generator of the present invention generates a WEB page using the user-independent WEB page template file and the customizing data files. For example, the HTML template file might contain placeholders for stock price and volume data. The customizing files stored on the server contain the current price and volume information that would be inserted into the HTML output file (application-specific test script).
In another embodiment, the present invention is used to generate localized versions of a computer program (or more generally any document). The template file contains the computer program along with placeholders, and a customizing file for each country contains the language-specific (e.g., German and Japanese) string. The output file would contain the localized computer program.
Although the present invention has been described in terms of a preferred embodiment, it is not intended that the invention be limited by this embodiment. In particular, the generator of the present invention can be used to generate virtually any type of customized document. For example, the generator of the present invention could be used to generate resumes for different individuals from a user-independent resume template and user-specific customizing files. Also, the generator is particularly useful in generating documents that describe a test plan that is customized to an application. Also, one skilled in the art would appreciate that the term "file" refers to a collection of data that may or may not be a file system file. Modifications within the spirit of the present invention will be apparent to those skilled in the art. The scope of the present invention is defined in the claims that follow.

Claims (31)

I claim:
1. A method in a computer system for generating an application-specific test script file, the application-specific test script file containing test instructions for testing an application program, the method comprising:
receiving a test template file, the test template file having test instructions that contain placeholders, the placeholders indicating where application-specific placeholder values are to be logically inserted into the test template file, each placeholder having a placeholder name;
receiving an ordered list of customizing files having application-specific placeholder values each with a corresponding placeholder name; and
for each test instruction in the test template file,
when the test instruction contains a placeholder,
searching the customizing files according to the ordered list for a first placeholder value with a corresponding placeholder name that matches the placeholder name of the placeholder of the test instruction; and
when such a placeholder value is found, inserting the placeholder value into the test instruction; and
storing the test instruction into the application-specific test script file.
2. The method of claim 1 wherein a plurality of the customizing files contain placeholder values for a placeholder and the ordering of the list results in a placeholder value overriding another placeholder value in another customizing file.
3. The method of claim 1 wherein the template script file contains control commands for controlling the generation of the application-specific test script file.
4. The method of claim 3 wherein the control commands include a command for indicating an ordered list of customizing files.
5. The method of claim 3 wherein the control commands include a command for iteratively generating test instructions with indexed placeholders.
6. The method of claim 1 wherein after a placeholder value is inserted into the test instruction, determining whether the inserted placeholder value contains placeholders.
7. A method in a computer system for generating an application-specific test script file, the application-specific test script file containing test instructions for testing an application program, the method comprising:
receiving a test template file, the test template file having statements that are test instructions or iterative commands, and having placeholders, the placeholders indicating where application-specific placeholder values are to be logically inserted into the test template file, the iterative command having an iterative instruction with an iterative placeholder; and
for each statement in the test template file,
when the statement is the iterative command,
for each iteration of the iterative command,
replacing the iterative placeholder with an indexed iterative placeholder within the iterative instruction;
inserting an application-specific placeholder value for the indexed iterative placeholder within the iterative instruction; and
storing the iterative instruction with the inserted placeholder value into the application-specific test script file.
8. The method of claim 7 wherein the inserting of an application-specific placeholder value includes searching an ordered list of customizing files for a first placeholder value for the indexed iterative placeholder.
9. A method of generating a customized output file comprising:
creating a template file having data with placeholders;
creating a derived customizing file having placeholder values for placeholders, wherein the derived customizing file inherits a base customizing file having placeholder values for placeholders; and
for each placeholder within the template file,
when the derived customizing file has a placeholder value for the placeholder, replacing the placeholder with the placeholder value from the derived customizing file; and
when the derived customizing file does not have a placeholder value for the placeholder, replacing the placeholder with a placeholder value from the base customizing file so that the derived customizing file can share the placeholder values of the base customizing file.
10. The method of claim 9 wherein the customized output file is an application-specific test script.
11. The method of claim 9 wherein the customized output file is a WEB page, wherein the template file is stored on a local computer, and wherein the customizing files are downloaded from a server computer to the local computer.
12. The method of claim 9 wherein the customized output file is a localized version of a computer program and wherein the customizing files contain language-specific data.
13. The method of claim 9 wherein the base and derived customizing files are specified in an ordered list of customizing files.
14. The method of claim 9 wherein the template file contains a control command for iteratively generating data for the customized output file.
15. The method of claim 14 wherein the generated data includes placeholders that are replaced by placeholder values.
16. A method of generating a customized output file, the method comprising:
receiving a template file having statements with an iterative command, the iterative command indicating a number of iterations and having an iterative instruction with an indexed placeholder;
receiving a customizing file having placeholder values for iterative placeholders; and
for each of the number of iterations in the iterative command,
replacing the indexed placeholder within the iterative instruction with a placeholder value from the customizing file based on the iteration number; and
adding the iterative instruction with the replaced iterative placeholder to the customized output file.
17. The method of claim 16 wherein the customized output file is an application-specific test script.
18. The method of claim 16 wherein the customized output file is a WEB page, wherein the template file is stored on a local computer, and wherein the customizing file is received from a server computer at the local computer.
19. The method of claim 16 wherein the customized output file is a localized version of a computer program and wherein the customizing file contains language-specific data.
20. The method of claim 16 including receiving a plurality of customizing files wherein the replacing of the indexed placeholder is based on inheritance of the customizing files.
21. A computer-readable medium containing instructions for causing a computer system to generate an output file by:
receiving a template file having data with placeholders;
receiving an ordered list of customizing files having placeholder values; and
for each placeholder in the data,
searching the customizing files according to the ordered list for a first placeholder value for the placeholder;
when such a placeholder value is found, inserting the placeholder value into the data; and
storing the data with the inserted placeholder as part of the output file whereby the searching of the customizing files effects inheritance of customizing files.
22. A computer-readable medium of claim 21 wherein a plurality of the customizing files contain placeholder values for a placeholder and the ordering of the list results in a placeholder value overriding another placeholder value in another customizing file.
23. The computer-readable medium of claim 21 wherein the template file contains control commands for controlling the generation of the output file.
24. The computer-readable medium of claim 23 wherein the control commands include a command for indicating an ordered list of customizing files.
25. The computer-readable medium of claim 23 wherein the control commands include a command for iteratively generating data with indexed placeholders.
26. The computer-readable medium of claim 21 wherein after a placeholder value is inserted into the data, determining whether the inserted placeholder value contains placeholders to effect recursion of placeholders.
27. The computer-readable medium of claim 23 wherein the control commands include a command for indicating to selectively process portions of the template file based on evaluation of a test condition in the command.
28. A computer-readable medium containing instructions for causing a computer system to generate an application-specific test script file, the application-specific test script file containing test instructions for testing an application program, by:
receiving a test template file, the test template file having statements that are test instructions or iterative commands and having placeholders, the placeholders indicating where application-specific placeholder values are to be logically inserted into the test template file, the iterative command having an iterative instruction with an iterative placeholder; and
for each iteration of each iterative command in the test template file,
replacing the iterative placeholder of the iterative command with an indexed iterative placeholder within the iterative instruction;
inserting an application-specific placeholder value for the indexed iterative placeholder within the iterative instruction; and
adding the iterative instruction with the inserted placeholder value to the application-specific test script file.
29. The computer-readable medium of claim 28 wherein the inserting of an application-specific placeholder value includes searching an ordered list of customizing files for a first placeholder value for the indexed iterative placeholder.
30. A computer system for generating an application-specific test script comprising:
a test template file having test instructions with placeholders;
a derived customizing file having placeholder values for placeholders, wherein the derived customizing file inherits a base customizing file having placeholder values for placeholders; and
an output file generator that replaces the placeholder with the placeholder value from the derived customizing file when the derived customizing file has a placeholder value for the placeholder and replaces the placeholder with a placeholder value from the base customizing file so that the derived customizing file can share the placeholder values of the base customizing file when the derived customizing file does not have a placeholder value for the placeholder.
31. A computer system for generating a test script comprising:
a test template file having statements with an iterative command, the iterative command indicating a number of iterations and having an iterative instruction with an indexed placeholder;
a customizing file having placeholder values for iterative placeholders; and
an output file generator that, for each of the number of iterations in the iterative command, replaces the indexed placeholder within the iterative instruction with a placeholder value from the customizing file based on the iteration number and adds the iterative instruction with the replaced iterative placeholder to the test script.
US08/728,622 1996-10-10 1996-10-10 Method and system for generating test scripts Expired - Lifetime US5754755A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US08/728,622 US5754755A (en) 1996-10-10 1996-10-10 Method and system for generating test scripts

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US08/728,622 US5754755A (en) 1996-10-10 1996-10-10 Method and system for generating test scripts

Publications (1)

Publication Number Publication Date
US5754755A true US5754755A (en) 1998-05-19

Family

ID=24927601

Family Applications (1)

Application Number Title Priority Date Filing Date
US08/728,622 Expired - Lifetime US5754755A (en) 1996-10-10 1996-10-10 Method and system for generating test scripts

Country Status (1)

Country Link
US (1) US5754755A (en)

Cited By (77)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5901154A (en) * 1996-06-14 1999-05-04 Matasushita Electric Industrial Co., Ltd. Method for producing test program for semiconductor device
US5928337A (en) * 1997-04-08 1999-07-27 Primax Electronics Ltd. Programmable image processing system including scanner with displaying device for sequential display of control signals when script file execution program starts
US5991537A (en) * 1997-09-16 1999-11-23 The United States Of America As Represented By The Secretary Of The Navy VXI test executive
US6263376B1 (en) * 1997-02-24 2001-07-17 Novell, Inc. Generic run-time binding interpreter
US6308146B1 (en) 1998-10-30 2001-10-23 J. D. Edwards World Source Company System and method for simulating user input to control the operation of an application
US6330716B1 (en) * 1998-11-13 2001-12-11 Hewlett-Packard Company Apparatus and method for on-line replacement of a running script
US20020029377A1 (en) * 1998-12-28 2002-03-07 Pavela Thomas J. System and method for developing test cases using a test object library
US6357038B1 (en) * 1998-04-13 2002-03-12 Adobe Systems Incorporated Cross platform and cross operating system macros
WO2002021749A2 (en) * 2000-09-08 2002-03-14 Plumtree Software Providing a personalized web page by accessing different servers
US20020151295A1 (en) * 2001-02-20 2002-10-17 Jerome Boss Mobile communication device dynamic service application and dynamic service application scripting
US20020156812A1 (en) * 2000-09-08 2002-10-24 Krasnoiarov Boris Andreyevich Method and system for assembling concurrently-generated content
US6530039B1 (en) * 1999-06-14 2003-03-04 Microsoft Corporation Porting engine for testing of multi-lingual software
US20030070119A1 (en) * 2001-10-10 2003-04-10 Dallin Michael Dean Method and system for testing a software product
US20030131290A1 (en) * 1998-06-22 2003-07-10 Amir Weinberg Software system and methods for testing transactional servers
US20030163446A1 (en) * 2002-02-28 2003-08-28 Kurt Frieden Efficiently storing indented threads in a threaded discussion application
US20030202012A1 (en) * 2002-04-29 2003-10-30 International Business Machines Corporation Method, system and program product for determining differences between an existing graphical user interface (GUI) mapping file and a current GUI
US20030208744A1 (en) * 2002-05-06 2003-11-06 Microsoft Corporation Method and system for generating test matrices for software programs
US20030217196A1 (en) * 2002-05-14 2003-11-20 Microsoft Corporation Software on demand system
US20040054483A1 (en) * 2002-09-17 2004-03-18 Hydrogenics Corporation System and method for controlling a fuel cell testing device
US20040107213A1 (en) * 2002-12-02 2004-06-03 Pedro Zubeldia Systems and methods for generating data files for testing EDI receiving and processing capabilities
US20040229954A1 (en) * 2003-05-16 2004-11-18 Macdougall Diane Elaine Selective manipulation of triglyceride, HDL and LDL parameters with 6-(5-carboxy-5-methyl-hexyloxy)-2,2-dimethylhexanoic acid monocalcium salt
US20040267467A1 (en) * 2002-09-17 2004-12-30 Gopal Ravi B Alarm recovery system and method for fuel cell testing systems
US20050050547A1 (en) * 2003-08-29 2005-03-03 Whittle Derrick W. Method and apparatus for providing desktop application functionality in a client/server architecture
US20050074126A1 (en) * 2002-01-29 2005-04-07 Stanko Joseph A. Single sign-on over the internet using public-key cryptography
US20050097397A1 (en) * 2003-10-21 2005-05-05 Yuh-Cherng Wu Computer system diagnosis with user-developed procedure
US20050097400A1 (en) * 2003-10-21 2005-05-05 Yuh-Cherng Wu Failures of computer system diagnostic procedures addressed in specified order
US20050102569A1 (en) * 2003-10-22 2005-05-12 Yuh-Cherng Wu Performing diagnosis in a computer system
WO2005043392A1 (en) * 2003-10-22 2005-05-12 Sap Aktiengesellschaft Computer system diagnostic procedures performed in specified order
US6907546B1 (en) * 2000-03-27 2005-06-14 Accenture Llp Language-driven interface for an automated testing framework
WO2005059744A1 (en) * 2003-12-18 2005-06-30 Motorola Inc A method of automatically generating test scripts from a system specification model
US20050177773A1 (en) * 2004-01-22 2005-08-11 Andrew Hadley Software method for exhaustive variation of parameters, independent of type
US20050183948A1 (en) * 2003-09-22 2005-08-25 Ali Rusta-Sallehy Apparatus and method for reducing instances of pump de-priming
US6957423B1 (en) * 2001-05-15 2005-10-18 Xilinx, Inc. Method of inlining a VHDL function call into Verilog
US20050257198A1 (en) * 2004-05-11 2005-11-17 Frank Stienhans Testing pattern-based applications
US7017183B1 (en) 2001-06-29 2006-03-21 Plumtree Software, Inc. System and method for administering security in a corporate portal
US7039899B1 (en) * 2002-03-27 2006-05-02 Oracle International Corporation System and method for automatically generating a script for testing software
US7065677B1 (en) 2003-04-10 2006-06-20 Microsoft Corporation Method for testing operating system components
US7092942B2 (en) 2002-05-31 2006-08-15 Bea Systems, Inc. Managing secure resources in web resources that are accessed by multiple portals
US20060195839A1 (en) * 2005-02-28 2006-08-31 Microsoft Corporation Computer system for deploying software on multiple computers
US20060253411A1 (en) * 2005-05-05 2006-11-09 International Business Machines Corporation Method, system and program product for inserting visual controls for data values in web content from a legacy web application without rewriting the legacy web application
US20070168735A1 (en) * 2005-11-04 2007-07-19 Hon Hai Precision Industry Co., Ltd. System and method for automatic testing
US7272822B1 (en) * 2002-09-17 2007-09-18 Cisco Technology, Inc. Automatically generating software tests based on metadata
US20070240127A1 (en) * 2005-12-08 2007-10-11 Olivier Roques Computer method and system for automatically creating tests for checking software
US7296188B2 (en) * 2002-07-11 2007-11-13 International Business Machines Corporation Formal test case definitions
US7315618B1 (en) 2001-12-27 2008-01-01 At&T Bls Intellectual Property, Inc. Voice caller ID
US20080004855A1 (en) * 2005-03-18 2008-01-03 Hidehisa Sakai Design support apparatus, design support method, and design support program
CN100365588C (en) * 2004-03-16 2008-01-30 鸿富锦精密工业(深圳)有限公司 Rapid diagnosis testing system and method for computer hardware
CN100382075C (en) * 2003-12-30 2008-04-16 英业达股份有限公司 Hardware-level based test script automatic generating system and method
US20080120521A1 (en) * 2006-11-21 2008-05-22 Etaliq Inc. Automated Testing and Control of Networked Devices
US7380235B1 (en) 2003-06-27 2008-05-27 Microsoft Corporation Application program interface call replay tool
US7395500B2 (en) 2003-08-29 2008-07-01 Yahoo! Inc. Space-optimizing content display
US7412720B1 (en) 2001-11-02 2008-08-12 Bea Systems, Inc. Delegated authentication using a generic application-layer network protocol
US20080307331A1 (en) * 2007-06-05 2008-12-11 Yokogawa Electric Corporation Graphic information generation system
US7496607B2 (en) 2003-08-29 2009-02-24 Yahoo! Inc. Method and system for maintaining synchronization between a local data cache and a data store
CN100525302C (en) * 2005-02-06 2009-08-05 华为技术有限公司 Script generating device based on assembly multiplexing, and method therefor
US20090204945A1 (en) * 2008-02-07 2009-08-13 Oracle International Corporation Utilizing intelligent automated scripts to test software applications
WO2009148481A1 (en) * 2008-06-06 2009-12-10 Sapient Corporation Systems and methods for visual test authoring and automation
US20100318850A1 (en) * 2009-06-16 2010-12-16 International Business Machines Corporation Generation of a stimuli based on a test template
US20110054643A1 (en) * 2009-08-26 2011-03-03 Gary Keith Law Methods and apparatus to manage testing of a process control system
US20110151954A1 (en) * 2009-12-18 2011-06-23 Electronics And Telecommunications Research Institute Device for providing virtual client managing module, apparatus for managing virtual client, and method for testing a game by using virtual client managing module
US20110209004A1 (en) * 2010-02-22 2011-08-25 International Business Machines Corporation Integrating templates into tests
US8024706B1 (en) 2005-09-27 2011-09-20 Teradata Us, Inc. Techniques for embedding testing or debugging features within a service
CN103186639A (en) * 2011-12-31 2013-07-03 腾讯科技(北京)有限公司 Data generation method and system
US20130263089A1 (en) * 2012-03-30 2013-10-03 NIIT Technologies Ltd Generating test cases for functional testing of a software application
US20140143599A1 (en) * 2012-11-16 2014-05-22 Nvidia Corporation Test program generator using key enumeration and string replacement
US20140229917A1 (en) * 2013-02-13 2014-08-14 International Business Machines Corporation Generating Input Values for a Test Dataset from a Datastore Based on Semantic Annotations
CN104391785A (en) * 2014-11-04 2015-03-04 成都博智维讯信息技术有限公司 Testing method for ERP (Enterprise Resource Planning) data
US9047414B1 (en) * 2011-03-15 2015-06-02 Symantec Corporation Method and apparatus for generating automated test case scripts from natural language test cases
CN104956326A (en) * 2013-02-01 2015-09-30 惠普发展公司,有限责任合伙企业 Test script creation based on abstract test user controls
US9753842B2 (en) 2014-05-09 2017-09-05 Wipro Limited System and method for creating universal test script for testing variants of software application
US10248552B2 (en) * 2016-07-20 2019-04-02 International Business Machines Corporation Generating test scripts for testing a network-based application
US10268570B2 (en) * 2016-05-05 2019-04-23 Oracle International Corporation Methods, systems, and computer readable media for automated generation of test files and testing network equipment using same
CN109871314A (en) * 2019-01-02 2019-06-11 石化盈科信息技术有限责任公司 The automatic generation method of test script
CN110347598A (en) * 2019-07-10 2019-10-18 上海达梦数据库有限公司 A kind of test script generation method, device, server and storage medium
CN110959165A (en) * 2017-07-28 2020-04-03 英迈国际有限公司 Techniques for automatically verifying functionality of offers in a cloud service broker system
US20220334959A1 (en) * 2021-04-14 2022-10-20 National Taiwan University Method and apparatus for generating software test reports
US11561997B2 (en) 2019-03-13 2023-01-24 Oracle International Corporation Methods, systems, and computer readable media for data translation using a representational state transfer (REST) application programming interface (API)

Citations (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4860291A (en) * 1987-12-28 1989-08-22 Tektronix, Inc. Test vector definition system employing template concept
US5025396A (en) * 1989-03-21 1991-06-18 International Business Machines Corporation Method and apparatus for merging a digitized image with an alphanumeric character string
US5148366A (en) * 1989-10-16 1992-09-15 Medical Documenting Systems, Inc. Computer-assisted documentation system for enhancing or replacing the process of dictating and transcribing
US5159687A (en) * 1989-11-14 1992-10-27 Caseworks, Inc. Method and apparatus for generating program code files
US5455938A (en) * 1994-09-14 1995-10-03 Ahmed; Sultan Network based machine instruction generator for design verification
US5479414A (en) * 1990-12-26 1995-12-26 International Business Machines Corporation Look ahead pattern generation and simulation including support for parallel fault simulation in LSSD/VLSI logic circuit testing
US5495571A (en) * 1992-09-30 1996-02-27 Microsoft Corporation Method and system for performing parametric testing of a functional programming interface
US5544298A (en) * 1993-01-22 1996-08-06 Data Management Corp. Code generation and data access system
US5572668A (en) * 1995-02-07 1996-11-05 Oracle Corporation Method and apparatus for universal national language support program testing
US5572643A (en) * 1995-10-19 1996-11-05 Judson; David H. Web browser with dynamic display of information objects during linking
US5633879A (en) * 1996-01-19 1997-05-27 Texas Instruments Incorporated Method for integrated circuit design and test
US5657438A (en) * 1990-11-27 1997-08-12 Mercury Interactive (Israel) Ltd. Interactive system for developing tests of system under test allowing independent positioning of execution start and stop markers to execute subportion of test script
US5669000A (en) * 1991-11-20 1997-09-16 Apple Computer, Inc. Interpreter for performing remote testing of computer systems

Patent Citations (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4860291A (en) * 1987-12-28 1989-08-22 Tektronix, Inc. Test vector definition system employing template concept
US5025396A (en) * 1989-03-21 1991-06-18 International Business Machines Corporation Method and apparatus for merging a digitized image with an alphanumeric character string
US5148366A (en) * 1989-10-16 1992-09-15 Medical Documenting Systems, Inc. Computer-assisted documentation system for enhancing or replacing the process of dictating and transcribing
US5159687A (en) * 1989-11-14 1992-10-27 Caseworks, Inc. Method and apparatus for generating program code files
US5657438A (en) * 1990-11-27 1997-08-12 Mercury Interactive (Israel) Ltd. Interactive system for developing tests of system under test allowing independent positioning of execution start and stop markers to execute subportion of test script
US5479414A (en) * 1990-12-26 1995-12-26 International Business Machines Corporation Look ahead pattern generation and simulation including support for parallel fault simulation in LSSD/VLSI logic circuit testing
US5669000A (en) * 1991-11-20 1997-09-16 Apple Computer, Inc. Interpreter for performing remote testing of computer systems
US5495571A (en) * 1992-09-30 1996-02-27 Microsoft Corporation Method and system for performing parametric testing of a functional programming interface
US5544298A (en) * 1993-01-22 1996-08-06 Data Management Corp. Code generation and data access system
US5455938A (en) * 1994-09-14 1995-10-03 Ahmed; Sultan Network based machine instruction generator for design verification
US5572668A (en) * 1995-02-07 1996-11-05 Oracle Corporation Method and apparatus for universal national language support program testing
US5572643A (en) * 1995-10-19 1996-11-05 Judson; David H. Web browser with dynamic display of information objects during linking
US5633879A (en) * 1996-01-19 1997-05-27 Texas Instruments Incorporated Method for integrated circuit design and test

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
Using Microsoft Word , Word Processing Program Version 3 for IBM Personal Computers and Compatibles, 1986 Copyright Microsoft Corporation 1983, 1985, 1986. *
Using Microsoft Word, Word Processing Program Version 3 for IBM Personal Computers and Compatibles, 1986 Copyright Microsoft Corporation 1983, 1985, 1986.

Cited By (142)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5901154A (en) * 1996-06-14 1999-05-04 Matasushita Electric Industrial Co., Ltd. Method for producing test program for semiconductor device
US6263376B1 (en) * 1997-02-24 2001-07-17 Novell, Inc. Generic run-time binding interpreter
US5928337A (en) * 1997-04-08 1999-07-27 Primax Electronics Ltd. Programmable image processing system including scanner with displaying device for sequential display of control signals when script file execution program starts
US5991537A (en) * 1997-09-16 1999-11-23 The United States Of America As Represented By The Secretary Of The Navy VXI test executive
US6357038B1 (en) * 1998-04-13 2002-03-12 Adobe Systems Incorporated Cross platform and cross operating system macros
US6810494B2 (en) * 1998-06-22 2004-10-26 Mercury Interactive Corporation Software system and methods for testing transactional servers
US20030131290A1 (en) * 1998-06-22 2003-07-10 Amir Weinberg Software system and methods for testing transactional servers
US6308146B1 (en) 1998-10-30 2001-10-23 J. D. Edwards World Source Company System and method for simulating user input to control the operation of an application
US6330716B1 (en) * 1998-11-13 2001-12-11 Hewlett-Packard Company Apparatus and method for on-line replacement of a running script
US20020029377A1 (en) * 1998-12-28 2002-03-07 Pavela Thomas J. System and method for developing test cases using a test object library
US6978440B1 (en) * 1998-12-28 2005-12-20 International Business Machines Corporation System and method for developing test cases using a test object library
US6530039B1 (en) * 1999-06-14 2003-03-04 Microsoft Corporation Porting engine for testing of multi-lingual software
US20050193269A1 (en) * 2000-03-27 2005-09-01 Accenture Llp System, method, and article of manufacture for synchronization in an automated scripting framework
US6907546B1 (en) * 2000-03-27 2005-06-14 Accenture Llp Language-driven interface for an automated testing framework
US7437614B2 (en) 2000-03-27 2008-10-14 Accenture Llp Synchronization in an automated scripting framework
US20020156812A1 (en) * 2000-09-08 2002-10-24 Krasnoiarov Boris Andreyevich Method and system for assembling concurrently-generated content
WO2002021749A3 (en) * 2000-09-08 2002-06-27 Plumtree Software Providing a personalized web page by accessing different servers
US7861174B2 (en) 2000-09-08 2010-12-28 Oracle International Corporation Method and system for assembling concurrently-generated content
WO2002021749A2 (en) * 2000-09-08 2002-03-14 Plumtree Software Providing a personalized web page by accessing different servers
US7418254B2 (en) * 2001-02-20 2008-08-26 Microsoft Corporation Mobile communication device dynamic service application and dynamic service application scripting
US20020151295A1 (en) * 2001-02-20 2002-10-17 Jerome Boss Mobile communication device dynamic service application and dynamic service application scripting
US6957423B1 (en) * 2001-05-15 2005-10-18 Xilinx, Inc. Method of inlining a VHDL function call into Verilog
US7017183B1 (en) 2001-06-29 2006-03-21 Plumtree Software, Inc. System and method for administering security in a corporate portal
US20060161990A1 (en) * 2001-06-29 2006-07-20 Bea Systems, Inc. System and method for administering security in a corporate portal
US8281404B2 (en) 2001-06-29 2012-10-02 Oracle International Corp. System and method for administering security in a corporate portal
US20030070119A1 (en) * 2001-10-10 2003-04-10 Dallin Michael Dean Method and system for testing a software product
US7058857B2 (en) * 2001-10-10 2006-06-06 International Business Machines Corporation Method and system for testing a software product
US7412720B1 (en) 2001-11-02 2008-08-12 Bea Systems, Inc. Delegated authentication using a generic application-layer network protocol
US7315618B1 (en) 2001-12-27 2008-01-01 At&T Bls Intellectual Property, Inc. Voice caller ID
US20050074126A1 (en) * 2002-01-29 2005-04-07 Stanko Joseph A. Single sign-on over the internet using public-key cryptography
US7246230B2 (en) 2002-01-29 2007-07-17 Bea Systems, Inc. Single sign-on over the internet using public-key cryptography
US20070106634A1 (en) * 2002-02-28 2007-05-10 Bea Systems, Inc. Efficiently storing indented threads in a threaded discussion application
US20080010314A1 (en) * 2002-02-28 2008-01-10 Bea Systems, Inc. Efficiently Storing Indented Threads in a Threaded Discussion Application
US7653660B2 (en) 2002-02-28 2010-01-26 Bea Systems, Inc. Efficiently storing indented threads in a threaded discussion application
US7660827B2 (en) 2002-02-28 2010-02-09 Bea Systems, Inc. Efficiently storing indented threads in a threaded discussion application
US20030163446A1 (en) * 2002-02-28 2003-08-28 Kurt Frieden Efficiently storing indented threads in a threaded discussion application
US20070106635A1 (en) * 2002-02-28 2007-05-10 Bea Systems, Inc. Efficiently storing indented threads in a threaded discussion application
US7174330B2 (en) 2002-02-28 2007-02-06 Bea Systems, Inc. Efficiently storing indented threads in a threaded discussion application
US7254585B2 (en) 2002-02-28 2007-08-07 Bea Systems, Inc. Efficiently storing indented threads in a threaded discussion application
US8341126B2 (en) 2002-02-28 2012-12-25 Oracle International Corporation Efficiently storing indented threads in a threaded discussion application
US20060085458A1 (en) * 2002-02-28 2006-04-20 Kurt Frieden Efficiently storing indented threads in a threaded discussion application
US7171429B2 (en) 2002-02-28 2007-01-30 Bea Systems, Inc. Efficiently storing indented threads in a threaded discussion application
US20040210576A1 (en) * 2002-02-28 2004-10-21 Kurt Frieden Efficiently storing indented threads in a threaded discussion application
US7031977B2 (en) 2002-02-28 2006-04-18 Plumtree Software, Inc. Efficiently storing indented threads in a threaded discussion application
US20040210569A1 (en) * 2002-02-28 2004-10-21 Kurt Frieden Efficiently storing indented threads in a threaded discussion application
US7039899B1 (en) * 2002-03-27 2006-05-02 Oracle International Corporation System and method for automatically generating a script for testing software
US20050204298A1 (en) * 2002-04-29 2005-09-15 International Business Machines Corporation Method, system and program product for determining differences between an existing graphical user interface (GUI) mapping file and a current GUI
US20030202012A1 (en) * 2002-04-29 2003-10-30 International Business Machines Corporation Method, system and program product for determining differences between an existing graphical user interface (GUI) mapping file and a current GUI
US6898764B2 (en) 2002-04-29 2005-05-24 International Business Machines Corporation Method, system and program product for determining differences between an existing graphical user interface (GUI) mapping file and a current GUI
US7032212B2 (en) 2002-05-06 2006-04-18 Microsoft Corporation Method and system for generating test matrices for software programs
US20030208744A1 (en) * 2002-05-06 2003-11-06 Microsoft Corporation Method and system for generating test matrices for software programs
US20030217196A1 (en) * 2002-05-14 2003-11-20 Microsoft Corporation Software on demand system
US7213245B2 (en) * 2002-05-14 2007-05-01 Microsoft Corporation Software on demand system
US7092942B2 (en) 2002-05-31 2006-08-15 Bea Systems, Inc. Managing secure resources in web resources that are accessed by multiple portals
US20060294106A1 (en) * 2002-05-31 2006-12-28 Bea Systems, Inc. Managing Secure Resources in Web Resources that are Accessed by Multiple Portals
US7366724B2 (en) 2002-05-31 2008-04-29 Kurt Frieden Managing secure resources in web resources that are accessed by multiple portals
US7296188B2 (en) * 2002-07-11 2007-11-13 International Business Machines Corporation Formal test case definitions
US6978224B2 (en) 2002-09-17 2005-12-20 Hydrogenics Corporation Alarm recovery system and method for fuel cell testing systems
US7272822B1 (en) * 2002-09-17 2007-09-18 Cisco Technology, Inc. Automatically generating software tests based on metadata
US7149641B2 (en) 2002-09-17 2006-12-12 Hydrogenics Corporation System and method for controlling a fuel cell testing device
US20040054483A1 (en) * 2002-09-17 2004-03-18 Hydrogenics Corporation System and method for controlling a fuel cell testing device
US20040267467A1 (en) * 2002-09-17 2004-12-30 Gopal Ravi B Alarm recovery system and method for fuel cell testing systems
US20050075816A1 (en) * 2002-09-17 2005-04-07 Hydrogenics Corporation System and method for controlling a fuel cell testing device
US20040107213A1 (en) * 2002-12-02 2004-06-03 Pedro Zubeldia Systems and methods for generating data files for testing EDI receiving and processing capabilities
US7278059B2 (en) 2003-04-10 2007-10-02 Microsoft Corporation Method for testing operating system components
US20060150025A1 (en) * 2003-04-10 2006-07-06 Microsoft Corporation Method for testing operating system components
US7065677B1 (en) 2003-04-10 2006-06-20 Microsoft Corporation Method for testing operating system components
US20040229954A1 (en) * 2003-05-16 2004-11-18 Macdougall Diane Elaine Selective manipulation of triglyceride, HDL and LDL parameters with 6-(5-carboxy-5-methyl-hexyloxy)-2,2-dimethylhexanoic acid monocalcium salt
US7380235B1 (en) 2003-06-27 2008-05-27 Microsoft Corporation Application program interface call replay tool
US7395500B2 (en) 2003-08-29 2008-07-01 Yahoo! Inc. Space-optimizing content display
US7890961B2 (en) * 2003-08-29 2011-02-15 Yahoo! Inc. Method and apparatus for providing desktop application functionality in a client/server architecture
US20080270894A1 (en) * 2003-08-29 2008-10-30 Yahoo! Inc. Space-Optimizing Content Display
US7865463B2 (en) 2003-08-29 2011-01-04 Yahoo! Inc. Method and system for maintaining synchronization between a local data cache and a data store
US20050050547A1 (en) * 2003-08-29 2005-03-03 Whittle Derrick W. Method and apparatus for providing desktop application functionality in a client/server architecture
US10268359B2 (en) 2003-08-29 2019-04-23 Oath Inc. Space-optimizing content display
US7496607B2 (en) 2003-08-29 2009-02-24 Yahoo! Inc. Method and system for maintaining synchronization between a local data cache and a data store
US20090138568A1 (en) * 2003-08-29 2009-05-28 Yahoo! Inc. Method and system for maintaining synchronization between a local data cache and a data store
US20050183948A1 (en) * 2003-09-22 2005-08-25 Ali Rusta-Sallehy Apparatus and method for reducing instances of pump de-priming
US7263634B2 (en) 2003-10-21 2007-08-28 Sap Aktiengesellschaft Failures of computer system diagnostic procedures addressed in specified order
WO2005043391A1 (en) * 2003-10-21 2005-05-12 Sap Aktiengesellschaft Computer system diagnosis with user-developed procedure
US20050097400A1 (en) * 2003-10-21 2005-05-05 Yuh-Cherng Wu Failures of computer system diagnostic procedures addressed in specified order
US20050097397A1 (en) * 2003-10-21 2005-05-05 Yuh-Cherng Wu Computer system diagnosis with user-developed procedure
US7260744B2 (en) 2003-10-21 2007-08-21 Sap Aktiengesellschaft Computer system diagnosis with user-developed procedure
WO2005043392A1 (en) * 2003-10-22 2005-05-12 Sap Aktiengesellschaft Computer system diagnostic procedures performed in specified order
US7260750B2 (en) 2003-10-22 2007-08-21 Sap Aktiengesellschaft Computer system diagnostic procedures performed in specified order
US20050102569A1 (en) * 2003-10-22 2005-05-12 Yuh-Cherng Wu Performing diagnosis in a computer system
WO2005059744A1 (en) * 2003-12-18 2005-06-30 Motorola Inc A method of automatically generating test scripts from a system specification model
CN100382075C (en) * 2003-12-30 2008-04-16 英业达股份有限公司 Hardware-level based test script automatic generating system and method
US20050177773A1 (en) * 2004-01-22 2005-08-11 Andrew Hadley Software method for exhaustive variation of parameters, independent of type
CN100365588C (en) * 2004-03-16 2008-01-30 鸿富锦精密工业(深圳)有限公司 Rapid diagnosis testing system and method for computer hardware
US20050257198A1 (en) * 2004-05-11 2005-11-17 Frank Stienhans Testing pattern-based applications
US7913231B2 (en) * 2004-05-11 2011-03-22 Sap Ag Testing pattern-based applications
CN100525302C (en) * 2005-02-06 2009-08-05 华为技术有限公司 Script generating device based on assembly multiplexing, and method therefor
US20060195839A1 (en) * 2005-02-28 2006-08-31 Microsoft Corporation Computer system for deploying software on multiple computers
US20080004855A1 (en) * 2005-03-18 2008-01-03 Hidehisa Sakai Design support apparatus, design support method, and design support program
US20060253411A1 (en) * 2005-05-05 2006-11-09 International Business Machines Corporation Method, system and program product for inserting visual controls for data values in web content from a legacy web application without rewriting the legacy web application
US8024706B1 (en) 2005-09-27 2011-09-20 Teradata Us, Inc. Techniques for embedding testing or debugging features within a service
US20070168735A1 (en) * 2005-11-04 2007-07-19 Hon Hai Precision Industry Co., Ltd. System and method for automatic testing
US20070240127A1 (en) * 2005-12-08 2007-10-11 Olivier Roques Computer method and system for automatically creating tests for checking software
US7707553B2 (en) * 2005-12-08 2010-04-27 International Business Machines Corporation Computer method and system for automatically creating tests for checking software
WO2008061340A1 (en) * 2006-11-21 2008-05-29 Etaliq Inc. Automated testing and control of networked devices
US20080120521A1 (en) * 2006-11-21 2008-05-22 Etaliq Inc. Automated Testing and Control of Networked Devices
US7631227B2 (en) 2006-11-21 2009-12-08 Etaliq Inc. Automated testing and control of networked devices
US20080307331A1 (en) * 2007-06-05 2008-12-11 Yokogawa Electric Corporation Graphic information generation system
US9176851B2 (en) * 2008-02-07 2015-11-03 Oracle International Corporation Utilizing intelligent automated scripts to test software applications
US20090204945A1 (en) * 2008-02-07 2009-08-13 Oracle International Corporation Utilizing intelligent automated scripts to test software applications
US20110123973A1 (en) * 2008-06-06 2011-05-26 Sapient Corporation Systems and methods for visual test authoring and automation
WO2009148481A1 (en) * 2008-06-06 2009-12-10 Sapient Corporation Systems and methods for visual test authoring and automation
US8117499B2 (en) * 2009-06-16 2012-02-14 International Business Machines Corporation Generation of a stimuli based on a test template
US20100318850A1 (en) * 2009-06-16 2010-12-16 International Business Machines Corporation Generation of a stimuli based on a test template
US20110054643A1 (en) * 2009-08-26 2011-03-03 Gary Keith Law Methods and apparatus to manage testing of a process control system
US9874870B2 (en) 2009-08-26 2018-01-23 Fisher-Rosemount Systems, Inc. Methods and apparatus to manage testing of a process control system
US20110151954A1 (en) * 2009-12-18 2011-06-23 Electronics And Telecommunications Research Institute Device for providing virtual client managing module, apparatus for managing virtual client, and method for testing a game by using virtual client managing module
US8961314B2 (en) * 2009-12-18 2015-02-24 Electronics And Telecommunications Research Institute Device for providing virtual client managing module, apparatus for managing virtual client, and method for testing a game by using virtual client managing module
US8397217B2 (en) * 2010-02-22 2013-03-12 International Business Machines Corporation Integrating templates into tests
US20110209004A1 (en) * 2010-02-22 2011-08-25 International Business Machines Corporation Integrating templates into tests
US9047414B1 (en) * 2011-03-15 2015-06-02 Symantec Corporation Method and apparatus for generating automated test case scripts from natural language test cases
CN103186639A (en) * 2011-12-31 2013-07-03 腾讯科技(北京)有限公司 Data generation method and system
CN103186639B (en) * 2011-12-31 2017-10-10 腾讯科技(北京)有限公司 Data creation method and system
US8887135B2 (en) * 2012-03-30 2014-11-11 NIIT Technologies Ltd Generating test cases for functional testing of a software application
US20130263089A1 (en) * 2012-03-30 2013-10-03 NIIT Technologies Ltd Generating test cases for functional testing of a software application
US20140143599A1 (en) * 2012-11-16 2014-05-22 Nvidia Corporation Test program generator using key enumeration and string replacement
US9213613B2 (en) * 2012-11-16 2015-12-15 Nvidia Corporation Test program generator using key enumeration and string replacement
US20150363301A1 (en) * 2013-02-01 2015-12-17 Hewlett-Packard Development Company, L.P. Test script creation based on abstract test user controls
US10884905B2 (en) * 2013-02-01 2021-01-05 Micro Focus Llc Test script creation based on abstract test user controls
CN104956326A (en) * 2013-02-01 2015-09-30 惠普发展公司,有限责任合伙企业 Test script creation based on abstract test user controls
US20140229917A1 (en) * 2013-02-13 2014-08-14 International Business Machines Corporation Generating Input Values for a Test Dataset from a Datastore Based on Semantic Annotations
US9367433B2 (en) * 2013-02-13 2016-06-14 International Business Machines Corporation Generating input values for a test dataset from a datastore based on semantic annotations
US9753842B2 (en) 2014-05-09 2017-09-05 Wipro Limited System and method for creating universal test script for testing variants of software application
CN104391785A (en) * 2014-11-04 2015-03-04 成都博智维讯信息技术有限公司 Testing method for ERP (Enterprise Resource Planning) data
CN104391785B (en) * 2014-11-04 2017-06-23 成都博智维讯信息技术有限公司 A kind of ERP data tests method
US10268570B2 (en) * 2016-05-05 2019-04-23 Oracle International Corporation Methods, systems, and computer readable media for automated generation of test files and testing network equipment using same
US10248552B2 (en) * 2016-07-20 2019-04-02 International Business Machines Corporation Generating test scripts for testing a network-based application
US10613968B2 (en) 2016-07-20 2020-04-07 International Business Machines Corporation Generating test scripts for testing a network-based application
US10997059B2 (en) 2016-07-20 2021-05-04 International Business Machines Corporation Generating test scripts for testing a network-based application
CN110959165A (en) * 2017-07-28 2020-04-03 英迈国际有限公司 Techniques for automatically verifying functionality of offers in a cloud service broker system
CN109871314A (en) * 2019-01-02 2019-06-11 石化盈科信息技术有限责任公司 The automatic generation method of test script
US11561997B2 (en) 2019-03-13 2023-01-24 Oracle International Corporation Methods, systems, and computer readable media for data translation using a representational state transfer (REST) application programming interface (API)
CN110347598A (en) * 2019-07-10 2019-10-18 上海达梦数据库有限公司 A kind of test script generation method, device, server and storage medium
CN110347598B (en) * 2019-07-10 2023-11-28 上海达梦数据库有限公司 Test script generation method and device, server and storage medium
US20220334959A1 (en) * 2021-04-14 2022-10-20 National Taiwan University Method and apparatus for generating software test reports
US11846972B2 (en) * 2021-04-14 2023-12-19 National Taiwan University Method and apparatus for generating software test reports

Similar Documents

Publication Publication Date Title
US5754755A (en) Method and system for generating test scripts
US6725452B1 (en) Method for resolving dependency conflicts among multiple operative entities within a computing environment
US5761510A (en) Method for error identification in a program interface
US4949253A (en) Method and apparatus for automatically generating program
US6473707B1 (en) Test executive system and method including automatic result collection
US6651240B1 (en) Object-oriented software development support apparatus and development support method
US6401220B1 (en) Test executive system and method including step types for improved configurability
US6397378B1 (en) Test executive system and method including distributed type storage and conflict resolution
US6577981B1 (en) Test executive system and method including process models for improved configurability
US6305008B1 (en) Automatic statement completion
US5361357A (en) Method and apparatus for optimizing computer file compilation
US7555716B2 (en) Terminology customization in a processing environment
EP0707264A2 (en) System and method for determining whether a software package conforms to packaging rules and requirements
US8341594B1 (en) Version control in modeling environments
US20080082974A1 (en) Managing Software Component Version Identifications in a Componentised Software System
Wang et al. Formalizing and integrating the dynamic model within OMT
WO1999004346A1 (en) Method and apparatus for enforcement of behavior of application processing systems without modifying application processing systems
JPH07182147A (en) Method and system for generation of computer program
JP2001236246A (en) Automated regression test of workstation software
US6345387B1 (en) Coherent object system architecture
US9311077B2 (en) Identification of code changes using language syntax and changeset data
WO2013184952A1 (en) Method for automatic extraction of designs from standard source code
JP2002527814A (en) Component-based source code generator
Kreitz The Nuprl Proof Development System, Version 5: Reference Manual and User’s Guide
US7657869B2 (en) Integration of external tools into an existing design environment

Legal Events

Date Code Title Description
AS Assignment

Owner name: MICROSOFT CORPORATION, WASHINGTON

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:SMITH, ROSS FAULKNER, JR.;REEL/FRAME:008266/0557

Effective date: 19961009

STCF Information on status: patent grant

Free format text: PATENTED CASE

FPAY Fee payment

Year of fee payment: 4

REMI Maintenance fee reminder mailed
FPAY Fee payment

Year of fee payment: 8

FPAY Fee payment

Year of fee payment: 12

AS Assignment

Owner name: MICROSOFT TECHNOLOGY LICENSING, LLC, WASHINGTON

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:MICROSOFT CORPORATION;REEL/FRAME:034541/0001

Effective date: 20141014