CN115827428A - Universal test method and device for automatic test equipment, computer equipment and storage medium - Google Patents

Universal test method and device for automatic test equipment, computer equipment and storage medium Download PDF

Info

Publication number
CN115827428A
CN115827428A CN202211170670.9A CN202211170670A CN115827428A CN 115827428 A CN115827428 A CN 115827428A CN 202211170670 A CN202211170670 A CN 202211170670A CN 115827428 A CN115827428 A CN 115827428A
Authority
CN
China
Prior art keywords
test
class
flow
base
equipment
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.)
Pending
Application number
CN202211170670.9A
Other languages
Chinese (zh)
Inventor
丁巧巧
崔爱辉
梁锟
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.)
Hangzhou Zhiqianli Technology Co ltd
Original Assignee
Hangzhou Zhiqianli Technology Co ltd
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 Hangzhou Zhiqianli Technology Co ltd filed Critical Hangzhou Zhiqianli Technology Co ltd
Priority to CN202211170670.9A priority Critical patent/CN115827428A/en
Publication of CN115827428A publication Critical patent/CN115827428A/en
Pending legal-status Critical Current

Links

Images

Abstract

The embodiment of the invention discloses a universal testing method and device for automatic testing equipment, computer equipment and a storage medium. The method comprises the following steps: classifying the test items supported by the automatic test equipment to obtain a classification result; dividing each type of test item in the classification result into two base classes; classifying each type of test item in the classification result into an attribute class and a flow class, and inheriting a corresponding parent class; setting parameters and a test item basic interface for the two base classes; and constructing function parameters for the process class. The method of the embodiment of the invention can realize the addition of new test items or the modification of the existing codes, has small change places, avoids the modification omission and reduces the repeated codes.

Description

Universal test method and device for automatic test equipment, computer equipment and storage medium
Technical Field
The invention relates to an automatic test method, in particular to a universal test method and a universal test device for automatic test equipment, computer equipment and a storage medium.
Background
With the wider application of various automatic test equipment, the function and performance test of the equipment is indispensable before the equipment is produced; nowadays, the functions of the automatic test equipment are also diversified gradually, multiple types of tests need to be supported simultaneously, the tests of the same type are also divided into a plurality of types, and for the test items, the automatic test equipment can improve the test efficiency, reduce the time and labor cost, and perform the tests which are difficult or impossible to be completed by hands.
Because the function of the automatic test equipment is realized, the test items need to be written by software, so that the automatic test equipment has some defects: when the equipment needs to support a new test, the software also needs to add a new test item; when the basic function is changed, the function of each test item needs to be modified; code redundancy is easily created when the device needs to support more test functions.
Therefore, it is necessary to design a new method to realize the addition of new test items or the modification of existing codes, so that the change places are small, the change omission is avoided, and the repeated codes are reduced.
Disclosure of Invention
The invention aims to overcome the defects of the prior art and provides a universal testing method and device for automatic testing equipment, computer equipment and a storage medium.
In order to achieve the purpose, the invention adopts the following technical scheme: the general test method for the automatic test equipment comprises the following steps:
classifying the test items supported by the automatic test equipment to obtain a classification result;
dividing each type of test item in the classification result into two base classes;
classifying each type of test item in the classification result into an attribute class and a flow class, and inheriting a corresponding parent class;
setting parameters and a test item basic interface for the two base classes;
and constructing function parameters for the process class.
The further technical scheme is as follows: the classifying the test items supported by the automatic test equipment to obtain a classification result includes:
the test items supported by the automatic test equipment are classified, the common information of the test items of the same type is placed in a base class, and each test item inherits a parent class to obtain a classification result.
The further technical scheme is as follows: the two base classes include a streaming test attribute base class and a streaming test flow base class.
The further technical scheme is as follows: the classifying each type of test item in the classification result into an attribute class and a flow class, and inheriting a corresponding parent class, including:
classifying each type of test item in the classification result into an attribute class and a flow class;
and inheriting the test item of the attribute class to a streaming test attribute base class, and inheriting the test item of the flow class to a streaming test flow base class.
The further technical scheme is as follows: the setting of parameters and test item basic interfaces for the two base classes includes:
setting the flow marking test flow base class as a generic type, and setting the parameters of the flow marking test flow base class as corresponding attribute classes;
and setting a test item base interface.
The invention also provides a universal testing device for the automatic testing equipment, which comprises:
the first classification unit is used for classifying the test items supported by the automatic test equipment to obtain a classification result;
the second classification unit is used for classifying each type of test item in the classification result into two base classes;
the third classification unit is used for classifying each type of test item in the classification result into an attribute class and a flow class and inheriting a corresponding parent class;
the setting unit is used for setting parameters and a test item basic interface for the two base classes;
and the construction unit is used for constructing function parameters for the process class.
The further technical scheme is as follows: the first classification unit is used for classifying the test items supported by the automatic test equipment, placing the common information of the test items of the same type in a base class, and enabling each test item to inherit a parent class to obtain a classification result.
The further technical scheme is as follows: the second classification unit includes:
the test item classification subunit is used for classifying each type of test item in the classification result into an attribute class and a flow class;
and the inheritance subunit is used for inheriting the test item of the attribute class to the flow test attribute base class and inheriting the test item of the flow class to the flow test flow base class.
The invention also provides computer equipment which comprises a memory and a processor, wherein the memory is stored with a computer program, and the processor realizes the method when executing the computer program.
The invention also provides a storage medium storing a computer program which, when executed by a processor, implements the method described above.
Compared with the prior art, the invention has the beneficial effects that: the invention
The invention is further described below with reference to the accompanying drawings and specific embodiments.
Drawings
In order to more clearly illustrate the technical solutions of the embodiments of the present invention, the drawings needed to be used in the description of the embodiments are briefly introduced below, and it is obvious that the drawings in the following description are some embodiments of the present invention, and it is obvious for those skilled in the art to obtain other drawings based on these drawings without creative efforts.
Fig. 1 is a schematic flow chart of a general testing method for automated testing equipment according to an embodiment of the present invention;
FIG. 2 is a sub-flow diagram of a general testing method for automated testing equipment according to an embodiment of the present invention;
FIG. 3 is a sub-flow diagram of a general testing method for automatic testing equipment according to an embodiment of the present invention;
FIG. 4 is a schematic diagram of a base template class diagram provided by an embodiment of the present invention;
FIG. 5 is a schematic block diagram of a generic test apparatus for automated test equipment provided in an embodiment of the present invention;
FIG. 6 is a schematic block diagram of a second classification unit of a universal test device for automated test equipment provided in an embodiment of the present invention;
FIG. 7 is a schematic block diagram of a setup unit of a generic test device of an automated test equipment provided in an embodiment of the present invention;
FIG. 8 is a schematic block diagram of a computer device provided by an embodiment of the present invention.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are some, not all, embodiments of the present invention. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
It will be understood that the terms "comprises" and/or "comprising," when used in this specification and the appended claims, specify the presence of stated features, integers, steps, operations, elements, and/or components, but do not preclude the presence or addition of one or more other features, integers, steps, operations, elements, components, and/or groups thereof.
It is also to be understood that the terminology used in the description of the invention herein is for the purpose of describing particular embodiments only and is not intended to be limiting. As used in the specification of the present invention and the appended claims, the singular forms "a," "an," and "the" are intended to include the plural forms as well, unless the context clearly indicates otherwise.
It should be further understood that the term "and/or" as used in this specification and the appended claims refers to and includes any and all possible combinations of one or more of the associated listed items.
Referring to fig. 1, fig. 1 is a schematic flow chart of a general testing method for an automatic testing apparatus according to an embodiment of the present invention. The universal test method for the automatic test equipment is applied to the automatic test equipment, realizes the addition of new test items or the modification of the existing codes, can realize small change places, avoids the change omission and reduces the repeated codes.
Fig. 1 is a schematic flow chart of a general testing method for automated testing equipment according to an embodiment of the present invention. As shown in fig. 1, the method includes the following steps S110 to S150.
S110, classifying the test items supported by the automatic test equipment to obtain a classification result.
In the present embodiment, the classification result includes a flow test (FlowTest), a communication test (communicative test).
Specifically, the test items supported by the automatic test equipment are classified, the common information of the test items of the same type is placed in a base class, and each test item inherits a parent class to obtain a classification result.
The test items supported by the automatic test equipment are classified, the common information of the test items of the same type is placed in a base class, and each test item inherits a parent class. If equipment supports two liang of mutual tests, assembles the test, serial ports test etc. because two liang of mutual tests, assemble the test and all belong to the test of beating a stream, the serial ports test belongs to the communication test, then can have two base classes: a streaming test class and a communication test class. The two-two interactive test, the convergence test and the like can inherit the streaming test class, and the serial port test and the like can inherit the communication test class.
Therefore, the common part is extracted to be used as the base class, and when various subsequent test items are increased, only new subclasses are needed to be added, and the attributes which are not contained in the base class are stored in the subclasses.
When new test items are added, only unique test attributes need to be added.
And S120, dividing each type of test item in the classification result into two base classes.
In this embodiment, the two base classes include a streaming test attribute base class and a streaming test flow base class.
Specifically, a flow test attribute base class (FlowTestSetting) is created, which contains all flow test common test attributes; and creating a flow test flow base class (FlowTestItem) compatible with all the test flows of the flow test.
S130, dividing each type of test item in the classification result into an attribute class and a flow class, and inheriting a corresponding parent class.
In an embodiment, referring to fig. 2, the step S130 may include steps S131 to S132.
S131, dividing each type of test item in the classification result into an attribute class and a flow class;
s132, inheriting the test item of the attribute class to a streaming test attribute base class, and inheriting the test item of the process class to a streaming test process base class.
Specifically, an attribute class is created: the Allcustat setting inherits the FlowTestSetting and comprises test attributes required by pairwise interaction except the FlowTestSetting; creating a flow class: and the Allcustat item inherits the FlowTestItem, and if the test method of different test items is different for a certain test flow in the FlowTestItem, the test items are rewritten in the Allcustat item. Such as: and verifying the test result in the test, wherein the verification interface in the FlowTestItem is a universal verification mode, and if the verification modes of two-to-two interaction are different, rewriting in the verification interface in the AllclustmItem.
Each test is divided into two broad categories: the test attribute Setting and the test flow Item, such as the flow test FlowTest, can be classified into a flow test attribute Class FlowTestsetting and a flow test flow Class FlowTestitem. The FlowTestSetting class has test attributes common to the flow test, and the FlowTestItem class is a test flow common to the flow test.
Similarly, the pairwise interaction test is also divided into a pairwise interaction attribute Class testSetting inherits the FlowTestSetting, and the pairwise interactive process Class testItem inherits the FlowTestitem. Some flows in the FlowTestItem are overwritten in the testItem if they are handled differently for different test items. Pairwise interaction attributes are added in testSetting if they are not present in FlowTestSetting.
Only one file needs to be modified for modification of the common attributes. When a new test item is added, the file content only needs to contain the newly added content. Each test item is divided into two major types of test attributes and procedures, and is also very intuitive and easy to maintain.
The embodiment ensures that the change amount is small when the test item is modified, and the structure hierarchy is clear.
And S140, setting parameters and a test item basic interface for the two base classes.
In an embodiment, referring to fig. 3, the step S140 may include steps S141 to S142.
S141, setting the flow test flow base class as a generic type, and setting the parameters of the flow test flow base class as corresponding attribute classes;
and S142, setting a test item basic interface.
Referring to FIG. 4, the FlowTestItem is set to generic, and the parameters are set to corresponding property classes, such as: class FlowTestItem < T >. TestItem < T > where T FlowTestSetting. Thus, the attribute class is associated with the flow class, such as: two-by-two interactive class Allust OMItem, flowTestItem < AllCustomSetting >; testItem < T > is a test item base interface: initialize (), run test Run (T setting), stop test Stop (). setting is a test item attribute class, such as AllCustomSeting.
And S150, constructing function parameters for the process classes.
In this embodiment, the allcutomitem constructor parameter may be some basic test attributes, allCustomTest (testitemposition), such as: test latency, etc. is the entry attribute of the initialized test item, while AllCustomSetting is equivalent to the conditional attribute.
The embodiment can achieve small change places for the addition of new test items or the modification of the existing codes, avoid the change omission and reduce the repeated codes; through a clear hierarchical structure and classification of the test items, the maintainability and readability of the codes are improved, and follow-up management is facilitated.
To take a specific example: the automatic test equipment can carry out pairwise interaction test, convergence test and serial port test, so that the automatic test equipment has two categories, namely a streaming test and a communication test, wherein the streaming test comprises two files, namely FlowTestItem (basic test flow) and FlowTestParameters (basic test attributes), and the communication test comprises two files, namely CommunicationTestItem (basic test flow) and CommunicationTestParameters (basic test attributes). The pairwise interaction test also comprises two files, namely AllCustomsSpeting (test attributes except the basic test attributes) and AllCustomSt (in the basic test process, the part needing to be rewritten in part of the process) wherein the father class of the AllCustomsSpeting is FlowTestParameters, and the father class of the AllCustomSt St is FlowTestItem. The same serial port test also has two files, serialPortSetting (except the test attribute unique to the basic test attribute) and SerialPortTest (in the basic test flow, the part needing to be rewritten in the partial flow), wherein the parent class of SerialPortSetting is communication test parameters, and the parent class of SerialPortTest is communication test item.
The general test method for the automatic test equipment determines the attribute class and the flow class by classifying the test items supported by the automatic test equipment, inherits the corresponding parent class, namely the base class, only needs to newly add the subclasses when various subsequent test items are increased, stores the attributes which are not contained in the base class, only needs to modify one file for modifying the common attribute, and only needs to contain the newly added content when the new test items are added. Each test item is divided into two types of test attributes and procedures, so that the test items are visual and easy to maintain, the addition of new test items or the modification of existing codes are realized, the modification position is small, the modification omission is avoided, and repeated codes are reduced.
Fig. 5 is a schematic block diagram of a universal testing apparatus 300 for automated testing equipment according to an embodiment of the present invention. As shown in fig. 5, the present invention further provides a universal testing apparatus 300 for automatic testing equipment, corresponding to the above universal testing method for automatic testing equipment. The universal test equipment for automated test equipment 300 includes a unit for performing the above-described universal test method for automated test equipment, and the apparatus may be configured in a server. Specifically, referring to fig. 5, the generic testing device 300 for automatic test equipment includes a first classification unit 301, a second classification unit 302, a third classification unit 303, a setting unit 304, and a construction unit 305.
A first classification unit 301, configured to classify test items supported by the automated testing equipment to obtain a classification result; a second classification unit 302, configured to classify each type of test item in the classification result into two base classes; a third classification unit 303, configured to classify each type of test item in the classification result into an attribute class and a flow class, and inherit a corresponding parent class; a setting unit 304, configured to set parameters and a test item basic interface for the two base classes; a building unit 305, configured to build function parameters for the process class.
In an embodiment, the first classification unit 301 is configured to classify the test items supported by the automation test equipment, put common information of the test items of the same type in a base class, and enable each test item to inherit the parent class, so as to obtain a classification result.
In one embodiment, as shown in FIG. 6, the second classification unit 302 includes a test item classification subunit 3021 and an inheritance subunit 3022.
A test item classification subunit 3021, configured to classify each type of test item in the classification result into an attribute class and a flow class; an inheriting subunit 3022, configured to inherit the test item of the attribute class to the flow test attribute base class, and inherit the test item of the flow class to the flow test flow base class.
In one embodiment, as shown in fig. 7, the third classification unit 303 includes a base class setting sub-unit 3031 and an interface setting sub-unit 3032.
A base class setting subunit 3031, configured to set the streaming test procedure base class as a generic type, and set parameters of the streaming test procedure base class as corresponding attribute classes; and an interface setting subunit 3032, configured to set a test item base interface.
It should be noted that, as can be clearly understood by those skilled in the art, the specific implementation process of the universal testing apparatus 300 for automatic testing equipment and each unit may refer to the corresponding description in the foregoing method embodiment, and for convenience and brevity of description, no further description is provided herein.
The above-described automated test equipment universal test apparatus 300 may be implemented in the form of a computer program that can be run on a computer device as shown in fig. 8.
Referring to fig. 8, fig. 8 is a schematic block diagram of a computer device according to an embodiment of the present application. The computer device 500 may be a server, wherein the server may be an independent server or a server cluster composed of a plurality of servers.
Referring to fig. 8, the computer device 500 includes a processor 502, memory, and a network interface 505 connected by a system bus 501, where the memory may include a non-volatile storage medium 503 and an internal memory 504.
The non-volatile storage medium 503 may store an operating system 5031 and a computer program 5032. The computer programs 5032 include program instructions that, when executed, cause the processor 502 to perform an automated test equipment generic test method.
The processor 502 is used to provide computing and control capabilities to support the operation of the overall computer device 500.
The internal memory 504 provides an environment for the operation of the computer program 5032 in the non-volatile storage medium 503, and when the computer program 5032 is executed by the processor 502, the processor 502 can execute a generic testing method for the automatic testing equipment.
The network interface 505 is used for network communication with other devices. Those skilled in the art will appreciate that the configuration shown in fig. 8 is a block diagram of only a portion of the configuration relevant to the present teachings and does not constitute a limitation on the computer device 500 to which the present teachings may be applied, and that a particular computer device 500 may include more or less components than those shown, or combine certain components, or have a different arrangement of components.
Wherein the processor 502 is configured to run the computer program 5032 stored in the memory to implement the following steps:
classifying the test items supported by the automatic test equipment to obtain a classification result; dividing each type of test item in the classification result into two base classes; classifying each type of test item in the classification result into an attribute class and a flow class, and inheriting a corresponding parent class; setting parameters and a test item basic interface for the two base classes; and constructing function parameters for the process class.
The two base classes include a streaming test attribute base class and a streaming test flow base class.
In an embodiment, when the step of classifying the test items supported by the automated testing equipment to obtain the classification result is implemented by the processor 502, the following steps are specifically implemented:
the test items supported by the automatic test equipment are classified, the common information of the test items of the same type is placed in a base class, and each test item inherits a parent class to obtain a classification result.
In an embodiment, when the processor 502 implements the steps of classifying each type of test item in the classification result into an attribute class and a flow class, and inheriting a corresponding parent class, the following steps are specifically implemented:
classifying each type of test item in the classification result into an attribute class and a flow class; and inheriting the test item of the attribute class to a streaming test attribute base class, and inheriting the test item of the flow class to a streaming test flow base class.
In an embodiment, when the processor 502 implements the step of setting parameters and the test item basic interface for the two base classes, the following steps are specifically implemented:
setting the flow test flow base class as a generic type, and setting the parameters of the flow test flow base class as corresponding attribute classes; and setting a test item basic interface.
It should be understood that in the embodiment of the present Application, the Processor 502 may be a Central Processing Unit (CPU), and the Processor 502 may also be other general-purpose processors, digital Signal Processors (DSPs), application Specific Integrated Circuits (ASICs), field Programmable Gate Arrays (FPGAs) or other Programmable logic devices, discrete Gate or transistor logic devices, discrete hardware components, and the like. Wherein a general purpose processor may be a microprocessor or the processor may be any conventional processor or the like.
It will be understood by those skilled in the art that all or part of the flow of the method implementing the above embodiments may be implemented by a computer program instructing associated hardware. The computer program includes program instructions, and the computer program may be stored in a storage medium, which is a computer-readable storage medium. The program instructions are executed by at least one processor in the computer system to implement the flow steps of the embodiments of the method described above.
Accordingly, the present invention also provides a storage medium. The storage medium may be a computer-readable storage medium. The storage medium stores a computer program, wherein the computer program, when executed by a processor, causes the processor to perform the steps of:
classifying the test items supported by the automatic test equipment to obtain a classification result; dividing each type of test item in the classification result into two base classes; classifying the test items of each type in the classification result into an attribute type and a flow type, and inheriting a corresponding parent type; setting parameters and a test item basic interface for the two base classes; and constructing function parameters for the process class.
The two base classes include a streaming test attribute base class and a streaming test flow base class.
In an embodiment, when the processor executes the computer program to implement the step of classifying the test items supported by the automated test equipment to obtain the classification result, the following steps are specifically implemented:
the test items supported by the automatic test equipment are classified, the common information of the test items of the same type is placed in a base class, and each test item inherits a parent class to obtain a classification result.
In an embodiment, when the processor executes the computer program to implement the steps of classifying each type of test item in the classification result into an attribute class and a flow class, and inheriting a corresponding parent class, the following steps are specifically implemented:
classifying each type of test item in the classification result into an attribute class and a flow class; and inheriting the test item of the attribute class to a streaming test attribute base class, and inheriting the test item of the flow class to a streaming test flow base class.
In an embodiment, when the processor executes the computer program to implement the step of setting parameters and testing item basic interface for two base classes, the following steps are specifically implemented:
setting the flow test flow base class as a generic type, and setting the parameters of the flow test flow base class as corresponding attribute classes; and setting a test item basic interface.
The storage medium may be a usb disk, a removable hard disk, a Read-Only Memory (ROM), a magnetic disk, or an optical disk, which can store various computer readable storage media.
Those of ordinary skill in the art will appreciate that the elements and algorithm steps of the examples described in connection with the embodiments disclosed herein may be embodied in electronic hardware, computer software, or combinations of both, and that the components and steps of the examples have been described in a functional general in the foregoing description for the purpose of illustrating clearly the interchangeability of hardware and software. Whether such functionality is implemented as hardware or software depends upon the particular application and design constraints imposed on the implementation. Skilled artisans may implement the described functionality in varying ways for each particular application, but such implementation decisions should not be interpreted as causing a departure from the scope of the present invention.
In the several embodiments provided in the present invention, it should be understood that the disclosed apparatus and method may be implemented in other manners. For example, the above-described apparatus embodiments are merely illustrative. For example, the division of each unit is only one logic function division, and there may be another division manner in actual implementation. For example, various elements or components may be combined or may be integrated into another system, or some features may be omitted, or not implemented.
The steps in the method of the embodiment of the invention can be sequentially adjusted, combined and deleted according to actual needs. The units in the device of the embodiment of the invention can be merged, divided and deleted according to actual needs. In addition, functional units in the embodiments of the present invention may be integrated into one processing unit, or each unit may exist alone physically, or two or more units are integrated into one unit.
The integrated unit, if implemented in the form of a software functional unit and sold or used as a stand-alone product, may be stored in a storage medium. Based on such understanding, the technical solution of the present invention essentially or partially contributes to the prior art, or all or part of the technical solution can be embodied in the form of a software product, which is stored in a storage medium and includes instructions for causing a computer device (which may be a personal computer, a terminal, or a network device) to execute all or part of the steps of the method according to the embodiments of the present invention.
While the invention has been described with reference to specific embodiments, the invention is not limited thereto, and various equivalent modifications and substitutions can be easily made by those skilled in the art within the technical scope of the invention. Therefore, the protection scope of the present invention shall be subject to the protection scope of the claims.

Claims (10)

1. The general test method of the automatic test equipment is characterized by comprising the following steps:
classifying the test items supported by the automatic test equipment to obtain a classification result;
dividing each type of test item in the classification result into two base classes;
classifying each type of test item in the classification result into an attribute class and a flow class, and inheriting a corresponding parent class;
setting parameters and a test item basic interface for the two base classes;
and constructing function parameters for the process class.
2. The universal test method for automated test equipment according to claim 1, wherein the classifying the test items supported by the automated test equipment to obtain the classification result comprises:
the test items supported by the automatic test equipment are classified, the common information of the test items of the same type is placed in a base class, and each test item inherits a parent class to obtain a classification result.
3. The universal testing method for automated testing equipment as recited in claim 1, wherein the two base classes comprise a flow test attribute base class and a flow test procedure base class.
4. The universal testing method for automated testing equipment according to claim 3, wherein the classifying each type of test item in the classification result into an attribute class and a flow class and inheriting the corresponding parent class comprises:
classifying each type of test item in the classification result into an attribute class and a flow class;
and inheriting the test item of the attribute class to a streaming test attribute base class, and inheriting the test item of the flow class to a streaming test flow base class.
5. The universal testing method for automated testing equipment according to claim 4, wherein the setting of parameters and test item base interfaces for two base classes comprises:
setting the flow test flow base class as a generic type, and setting the parameters of the flow test flow base class as corresponding attribute classes;
and setting a test item basic interface.
6. Automatic change test equipment universal test device, its characterized in that includes:
the first classification unit is used for classifying the test items supported by the automatic test equipment to obtain a classification result;
the second classification unit is used for classifying each type of test item in the classification result into two base classes;
the third classification unit is used for classifying each type of test item in the classification result into an attribute class and a flow class and inheriting a corresponding parent class;
the setting unit is used for setting parameters and a test item basic interface for the two base classes;
and the construction unit is used for constructing function parameters for the process classes.
7. The universal testing device for automatic testing equipment as claimed in claim 6, wherein the first classification unit is configured to classify the testing items supported by the automatic testing equipment, and put the common information of the testing items of the same type in the base class, and each testing item inherits the parent class to obtain the classification result.
8. The universal testing device for automated test equipment of claim 7, wherein the second classification unit comprises:
the test item classification subunit is used for classifying each type of test item in the classification result into an attribute class and a flow class;
and the inheritance subunit is used for inheriting the test item of the attribute class to the flow test attribute base class and inheriting the test item of the flow class to the flow test flow base class.
9. A computer arrangement, characterized in that the computer arrangement comprises a memory, on which a computer program is stored, and a processor, which when executing the computer program, carries out the method according to any one of claims 1-5.
10. A storage medium, characterized in that the storage medium stores a computer program which, when executed by a processor, implements the method according to any one of claims 1 to 5.
CN202211170670.9A 2022-09-23 2022-09-23 Universal test method and device for automatic test equipment, computer equipment and storage medium Pending CN115827428A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202211170670.9A CN115827428A (en) 2022-09-23 2022-09-23 Universal test method and device for automatic test equipment, computer equipment and storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202211170670.9A CN115827428A (en) 2022-09-23 2022-09-23 Universal test method and device for automatic test equipment, computer equipment and storage medium

Publications (1)

Publication Number Publication Date
CN115827428A true CN115827428A (en) 2023-03-21

Family

ID=85523931

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202211170670.9A Pending CN115827428A (en) 2022-09-23 2022-09-23 Universal test method and device for automatic test equipment, computer equipment and storage medium

Country Status (1)

Country Link
CN (1) CN115827428A (en)

Similar Documents

Publication Publication Date Title
CN107273286B (en) Scene automatic test platform and method for task application
US8869111B2 (en) Method and system for generating test cases for a software application
US20240045850A1 (en) Systems and methods for database orientation transformation
KR102341154B1 (en) High-speed application for installation on mobile devices for permitting remote configuration of such mobile devices
CN107832062B (en) Program updating method and terminal equipment
WO2009044971A1 (en) Method and system for determining interface compatibility based on component model
JP2016504642A (en) Specifying and applying rules to data
CN108958843A (en) Plug-in unit construction method, system, equipment and medium based on lightweight script
CN110554958A (en) Graph database testing method, system, device and storage medium
CN111045933A (en) Regression strategy updating method and device, storage medium and terminal equipment
CN114531477B (en) Method and device for configuring functional components, computer equipment and storage medium
CN110688111A (en) Configuration method, device, server and storage medium of business process
CN109522005A (en) Cross-platform GRAPHICAL PROGRAMMING method
CN111813377A (en) Method and device for automatically generating application program
CN108351790B (en) Apparatus, method, and medium for non-monotonic eventual convergence of desired state configurations
Ramos-Gutiérrez et al. Discovering configuration workflows from existing logs using process mining
CN114201397A (en) Interface test modeling method and device, electronic equipment and storage medium
CN115827428A (en) Universal test method and device for automatic test equipment, computer equipment and storage medium
CN112559525A (en) Data checking system, method, device and server
CN115755867A (en) Vehicle diagnosis method and related device
CN115543428A (en) Simulated data generation method and device based on strategy template
CN114219882A (en) 3D rendering engine construction method and device, computer equipment and storage medium
CN107506299B (en) Code analysis method and terminal equipment
CN105787214A (en) Method and device for model verification
CN114143235A (en) NFV automatic test method, device, equipment and storage medium

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination