CN104133762A - Software test method and test device - Google Patents

Software test method and test device Download PDF

Info

Publication number
CN104133762A
CN104133762A CN201310159702.XA CN201310159702A CN104133762A CN 104133762 A CN104133762 A CN 104133762A CN 201310159702 A CN201310159702 A CN 201310159702A CN 104133762 A CN104133762 A CN 104133762A
Authority
CN
China
Prior art keywords
test
script file
test script
parameter
trial function
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.)
Granted
Application number
CN201310159702.XA
Other languages
Chinese (zh)
Other versions
CN104133762B (en
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.)
Tencent Technology Shenzhen Co Ltd
Original Assignee
Tencent Technology Shenzhen 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 Tencent Technology Shenzhen Co Ltd filed Critical Tencent Technology Shenzhen Co Ltd
Priority to CN201310159702.XA priority Critical patent/CN104133762B/en
Publication of CN104133762A publication Critical patent/CN104133762A/en
Application granted granted Critical
Publication of CN104133762B publication Critical patent/CN104133762B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Landscapes

  • Debugging And Monitoring (AREA)

Abstract

The invention provides a software test method, which comprises the following steps that: a test function is added into a test function list of at least one test script file, wherein the test function is used for realizing a corresponding test task, and the test function list comprises at least one test function; test parameters input by a test user are obtained, and the corresponding test script file is found according to the test parameters; the found test script file or the test function relevant to the parameters in the test script file is executed; and a test result is output. The invention also provides a test device. The software test method and the test device provided by the invention have the advantage of high test efficiency.

Description

Method for testing software and proving installation
Technical field
The present invention relates to field of computer technology, relate in particular to a kind of method for testing software and proving installation.
Background technology
Server is the important component part of network environment, and it can intercept the services request that the client on network is submitted to, and corresponding service is provided.Because server is to provide various services with client interaction data by interface, so first server test work need to carry out is interface testing work.It is correct that test subscriber need to guarantee that interface function realizes by server interface functional test, other test subscribers carry out in system testing process that client is combined with server so, just can get rid of the client-side issue causing due to server interface defect, be convenient to developer's orientation problem.
But, existing when server interface is tested, all need to develop different test scripts for different test assignments, work loaded down with trivial details, and efficiency is not high.
Summary of the invention
In view of this, the invention provides a kind of method for testing software and proving installation, can improve the efficiency of test script exploitation, management, operation.
A method for testing software, comprising: trial function is made an addition in the trial function list of at least one test script file, described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function; Obtain the test parameter of test subscriber's input, according to described test parameter, search corresponding test script file; Carry out in the test script file find or described test script file the trial function with described parameter correlation; And output test result.
A kind of software testing device, comprise: trial function adds module, for trial function being made an addition to the trial function list of at least one test script file, described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function; Parameter acquiring and search module, for obtaining the test parameter of test subscriber's input, searches corresponding test script file according to described test parameter; Execution module, for carrying out the trial function of found test script file or described test script file and described parameter correlation; And output module, for outputing test result.
The method for testing software that the embodiment of the present invention provides and device, by trial function being made an addition in the trial function list of test script file, after obtaining the test parameter of test subscriber's input, according to described test parameter, search corresponding test script file, carry out in the test script file find or described test script file the trial function with described parameter correlation.Thereby simplified the development process of test script file, and improved the efficiency of test script file exploitation, operation and maintenance.
For above and other object of the present invention, feature and advantage can be become apparent, preferred embodiment cited below particularly, and coordinate appended graphicly, be described in detail below.
Accompanying drawing explanation
The process flow diagram of the method for testing software that Fig. 1 provides for first embodiment of the invention.
Fig. 2 is the test result exemplary plot in first embodiment of the invention.
The process flow diagram of the method for testing software that Fig. 3 provides for second embodiment of the invention.
The process flow diagram of the method for testing software that Fig. 4 provides for third embodiment of the invention.
The process flow diagram of the method for testing software that Fig. 5 provides for fourth embodiment of the invention.
The structural representation of the software testing device that Fig. 6 provides for fifth embodiment of the invention.
The structural representation of the software testing device that Fig. 7 provides for sixth embodiment of the invention.
The structural representation of the software testing device that Fig. 8 provides for seventh embodiment of the invention.
The structural representation of the software testing device that Fig. 9 provides for eighth embodiment of the invention.
Embodiment
For further setting forth the present invention, realize technological means and the effect that predetermined goal of the invention is taked, below in conjunction with accompanying drawing and preferred embodiment, to according to the specific embodiment of the present invention, structure, feature and effect thereof, be described in detail as follows.
The method for testing software that the embodiment of the present invention provides can be applicable to realize the test to software in test terminal, for example, server interface is tested etc.Test terminal can be smart mobile phone, panel computer, pocket computer on knee and desk-top computer of being provided with by various softwares etc., preferably, test terminal can be the above-mentioned platform of supporting Perl (Practical Extraction and Report Language, practical form extracts language) language.
The first embodiment
The process flow diagram of the method for testing software that Fig. 1 provides for the first embodiment.As shown in Figure 1, the method for testing software of the present embodiment comprises the following steps:
Step S11, makes an addition to trial function in the trial function list of at least one test script file, and described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function.
For different test assignments, test subscriber can write different trial functions.Take server interface as example, if have by background server interface some services be provided, these services are URL (the Uniform Resource Locator by webpage, URL(uniform resource locator)) access, this class URL just can think the interface of background server, more corresponding functions, when accessing these URL, background server can return results data.Can whether meet by the result data of asking this interface then to check to return expection and carry out the test of interface.Test subscriber (tester), according to this test assignment, writes corresponding trial function, comprises this URL in trial function.When carrying out this trial function, testing tool will remove to access this URL automatically, then with the checkpoint of setting in trial function, goes the result data.
Can trial function be added in the trial function list of test script file with the form of being scheduled to.Wherein, predetermined form can comprise the index of trial function and the code of trial function, and wherein, the index of trial function can comprise the title of trial function list and the real address of trial function.
Predetermined formation can be for example (non-limiting as a reference):
# adds trial function in trial function list
$case_table{“CheckEachSvid”}=\&CheckEachSvid
# is real trial function below
sub?CheckEachSvid{
returen0;
}
Wherein, case_table represents trial function list, the title that CheckEachSvid is trial function.Trial function of every interpolation, only need to trial function be added in the trial function list of this test script file in test script file, this test script file can be newly-built test script file, can be also the test script file of having built up.When testing, test driver can load corresponding test script file according to corresponding order in operation, does not so just need the file of revising any other just can realize the expansion to test script file.
The number of described test script file can, for a plurality of, include a trial function list in test script file described in each.Test script file can leave under certain store path of test terminal.
Step S12, obtains the test parameter of test subscriber's input, according to described test parameter, searches corresponding test script file.
Test subscriber (tester) can pass through tools interfaces input test parameter, and test terminal finds corresponding test script file according to these test parameters.Test parameter can comprise the title of the store path information of test script file, the title of test script file or the trial function in test script file.According to the content of test parameter, can find all test script files that are stored under described path, or find concrete test script file, or in concrete test script file, find corresponding trial function.
Step S13, carries out in the test script file find or described test script file the trial function with described parameter correlation.
If in step S12, what find is one or several test script file, and the test script file find is carried out in test terminal, if what find is the trial function in test script file, carries out corresponding trial function.
Step S14, outputs test result.
Tested rear exportable test result to the screen of test terminal, as shown in Figure 2, it should be noted that, Fig. 2 is an exemplary plot, and particular content wherein does not form limitation of the invention.
Further, method of testing can also comprise the step that generates software test journal file, and test log information and test result in whole test process can be kept in software test journal file, are convenient to test subscriber and debug.Test log information for example can comprise item id, version, test phase, plan carry out with number of cases, actual carry out with number of cases, this day find number of defects, critical defect number, general number of defects, prompting number of defects, difficulty, suggestion, title, executor, date, always by number of cases, add up number of cases for executed, add up to find number of defects etc.
Preferably, the method for testing in the embodiment of the present invention can adopt Perl to develop.Perl can realize above-mentioned method of testing by dynamic load test script file with by the mode that global association array is preserved trial function, simultaneously can also be by conventional function in test, as program, daily record output and the background access request etc. that drive trial function operation extract the public module of composition, formation automated test frame.
The method for testing software that the embodiment of the present invention provides, by trial function being made an addition in the trial function list of test script file, after obtaining the test parameter of test subscriber's input, according to described test parameter, search corresponding test script file, carry out in the test script file find or described test script file the trial function with described parameter correlation.Thereby simplified the development process of test script file, and improved the efficiency of test script file exploitation, operation and maintenance.
The second embodiment
The process flow diagram of the method for testing software that Fig. 3 provides for second embodiment of the invention.As shown in Figure 3, above-mentioned method for testing software comprises the following steps:
Step S21, makes an addition to trial function in the trial function list of at least one test script file, and described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function.
Step S22, receives the described test parameter that test subscriber inputs, and described test parameter comprises the routing information of described test script file.
Step S23, finds all test script files that are stored under described path according to described routing information.
Step S24, carries out all test script files that find.
Step S25, outputs test result.
In the present embodiment, test parameter has comprised the store path information of described test script file in test terminal, for example, can be (non-limiting as a reference):
E:\Code\pl\perl?testRunner.pl-d?E:\Code\pl\localShare
Wherein, localShare is the Folder Name of depositing test script file.
Suppose to have deposited a plurality of test script files in this document folder, when all test script files that are stored under this path are found in test terminal according to described routing information, and while carrying out all test script files find, just the object of simultaneously moving a plurality of tests can be realized, the efficiency of test script operation can be greatly improved.
The method for testing software that inventive embodiments provides, by trial function being made an addition in the trial function list of test script file, after obtaining the test parameter of test subscriber's input, according to described test parameter, search corresponding test script file, carry out in the test script file find or described test script file the trial function with described parameter correlation.Thereby simplified the development process of test script file, and improved the efficiency of test script file exploitation, operation and maintenance.
The 3rd embodiment
The process flow diagram of the method for testing software that Fig. 4 provides for third embodiment of the invention.As shown in Figure 4, above-mentioned method for testing software comprises the following steps:
Step S31, makes an addition to trial function in the trial function list of at least one test script file, and described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function.
Step S32, receives the described test parameter that test subscriber inputs, and described test parameter comprises the title of routing information and the described test script file of described test script file.
Step S33, finds the described test script file being stored under described path according to the title of described routing information and described test script file.
Step S34, carries out and is stored in the described test script file under described path.
Step S35, outputs test result.
In the present embodiment, test parameter comprises the title of routing information and the described test script file of described test script file, for example, can be (non-limiting as a reference):
E:\Code\pl\perl?testRunner.pl-f?test_localShare_BVT.pl
Wherein, the title that test_localShare_BVT.pl is test script file.
When the described test script file being stored under described path is found according to the title of described routing information and described test script file in test terminal, just can carry out the test script file of this appointment.
The method for testing software that inventive embodiments provides, by trial function being made an addition in the trial function list of test script file, after obtaining the test parameter of test subscriber's input, according to described test parameter, search corresponding test script file, carry out in the test script file find or described test script file the trial function with described parameter correlation.Thereby simplified the development process of test script file, and improved the efficiency of test script file exploitation, operation and maintenance.
The 4th embodiment
The process flow diagram of the method for testing software that Fig. 5 provides for fourth embodiment of the invention.As shown in Figure 5, above-mentioned method for testing software comprises the following steps:
Step S41, makes an addition to trial function in the trial function list of at least one test script file, and described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function.
Step S42, receives the described test parameter that test subscriber inputs, and described test parameter comprises the title of the routing information of described test script file, the title of described test script file and trial function.
Step S43, finds the described test script file being stored under described path according to the title of described routing information and described test script file.
Step S44, carries out in described test script file the trial function identical with trial function title in described test parameter.
Step S45, outputs test result.
In the present embodiment, test parameter comprises the title of the routing information of described test script file, the title of described test script file and trial function, for example, can be (non-limiting as a reference): E: Code pl perl testRunner.pl-f test_localShare_BVT.pl-c localShare_BVT
Wherein, the title that test_localShare_BVT.pl is test script file, the title that localShare_BVT is trial function.
When the described test script file being stored under described path is found according to the title of described routing information and described test script file in test terminal, just can carry out the trial function of this appointment.
The method for testing software that inventive embodiments provides, by trial function being made an addition in the trial function list of test script file, after obtaining the test parameter of test subscriber's input, according to described test parameter, search corresponding test script file, carry out in the test script file find or described test script file the trial function with described parameter correlation.Thereby simplified the development process of test script file, and improved the efficiency of test script file exploitation, operation and maintenance.
The 5th embodiment
The structural representation of the software testing device that Fig. 6 provides for the 5th embodiment.The software testing device that the present embodiment provides can be for realizing the method for testing software in the first embodiment.As shown in Figure 6, software testing device 50, comprising: trial function adds module 51, parameter acquiring and searches module 52, execution module 53 and output module 54.
Wherein, trial function adds module 51 for trial function being made an addition to the trial function list of at least one test script file, and described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function.
Parameter acquiring and search module 52 for obtaining the test parameter of test subscriber input, searches corresponding test script file according to described test parameter.
Execution module 53 is for carrying out the trial function of found test script file or described test script file and described parameter correlation.
Output module 54 is for outputing test result.
Further, the number of described test script file can, for a plurality of, include a trial function list in test script file described in each.
Optionally, described device 50 can also comprise daily record generation module 55, and for generating software test journal file, described software test journal file is used for recording test log information and test result.
Each Implement of Function Module of the present embodiment software testing device 50 is the detailed process of function separately, refers to the particular content of above-mentioned Fig. 1 and middle description embodiment illustrated in fig. 2, repeats no more herein.
The software testing device that the embodiment of the present invention provides, by trial function being made an addition in the trial function list of test script file, after obtaining the test parameter of test subscriber's input, according to described test parameter, search corresponding test script file, carry out in the test script file find or described test script file the trial function with described parameter correlation.Thereby simplified the development process of test script file, and improved the efficiency of test script file exploitation, operation and maintenance.
The 6th embodiment
The structural representation of the software testing device that Fig. 7 provides for the 6th embodiment.The software testing device that the present embodiment provides can be for realizing the method for testing software in the first embodiment.As shown in Figure 7, software testing device 60, comprising: trial function adds module 61, the first test parameter acquisition module 62, first is searched module 63, the first execution module 64 and output module 65.
Wherein, trial function adds module 61 for trial function being made an addition to the trial function list of at least one test script file, and described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function.
The first test parameter acquisition module 62 is for receiving the described test parameter of test subscriber's input, described test parameter comprises the routing information of described test script file, and described first searches module 63 for find all test script files that are stored under described path according to described routing information; Described execution module 64 is for carrying out found all test script files.
Output module 65 is for outputing test result.
Each Implement of Function Module of the present embodiment software testing device 60 is the detailed process of function separately, refers to the particular content of above-mentioned middle description embodiment illustrated in fig. 3, repeats no more herein.
The software testing device that the embodiment of the present invention provides, by trial function being made an addition in the trial function list of test script file, after obtaining the test parameter of test subscriber's input, according to described test parameter, search corresponding test script file, carry out in the test script file find or described test script file the trial function with described parameter correlation.Thereby simplified the development process of test script file, and improved the efficiency of test script file exploitation, operation and maintenance.
The 7th embodiment
The structural representation of the software testing device that Fig. 8 provides for the 7th embodiment.The software testing device that the present embodiment provides can be for realizing the method for testing software in the first embodiment.As shown in Figure 8, software testing device 70, comprising: trial function adds module 71, the second test parameter acquisition module 72, second is searched module 73, the second execution module 74 and output module 75.
Wherein, trial function adds module 71 for trial function being made an addition to the trial function list of at least one test script file, and described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function.
Described the second test parameter acquisition module 72 is for receiving the described test parameter of test subscriber's input, described test parameter comprises the title of routing information and the described test script file of described test script file, and described second searches module 73 for find the described test script file being stored under described path according to the title of described routing information and described test script file; Described execution module 74 is for carrying out the described test script file being stored under described path.Output module 75 is for outputing test result.
Each Implement of Function Module of the present embodiment software testing device 70 is the detailed process of function separately, refers to the particular content of above-mentioned middle description embodiment illustrated in fig. 4, repeats no more herein.
The software testing device that the embodiment of the present invention provides, by trial function being made an addition in the trial function list of test script file, after obtaining the test parameter of test subscriber's input, according to described test parameter, search corresponding test script file, carry out in the test script file find or described test script file the trial function with described parameter correlation.Thereby simplified the development process of test script file, and improved the efficiency of test script file exploitation, operation and maintenance.
The 8th embodiment
The structural representation of the software testing device that Fig. 9 provides for the 8th embodiment.The software testing device that the present embodiment provides can be for realizing the method for testing software in the first embodiment.As shown in Figure 9, software testing device 80, comprising: trial function adds module 81, the second test parameter acquisition module 82, second is searched module 83, the second execution module 84 and output module 85.
Wherein, trial function adds module 81 for trial function being made an addition to the trial function list of at least one test script file, and described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function.
Described the 3rd test parameter acquisition module 82 is for receiving the described test parameter of test subscriber's input, described test parameter comprises the title of the routing information of described test script file, the title of described test script file and trial function, and the described the 3rd searches module 83 for find the described test script file being stored under described path according to the title of described routing information and described test script file; Described execution module 84 is for carrying out the trial function that described test script file is identical with trial function title in described test parameter.Output module 85 is for outputing test result.
Each Implement of Function Module of the present embodiment software testing device 80 is the detailed process of function separately, refers to the particular content of above-mentioned middle description embodiment illustrated in fig. 5, repeats no more herein.
The software testing device that the embodiment of the present invention provides, by trial function being made an addition in the trial function list of test script file, after obtaining the test parameter of test subscriber's input, according to described test parameter, search corresponding test script file, carry out in the test script file find or described test script file the trial function with described parameter correlation.Thereby simplified the development process of test script file, and improved the efficiency of test script file exploitation, operation and maintenance.
It should be noted that, each embodiment in this instructions all adopts the mode of going forward one by one to describe, and each embodiment stresses is the difference with other embodiment, between each embodiment identical similar part mutually referring to.For device class embodiment, because it is substantially similar to embodiment of the method, so description is fairly simple, relevant part is referring to the part explanation of embodiment of the method.
It should be noted that, in this article, relational terms such as the first and second grades is only used for an entity or operation to separate with another entity or operational zone, and not necessarily requires or imply and between these entities or operation, have the relation of any this reality or sequentially.And, term " comprises ", " comprising " or its any other variant are intended to contain comprising of nonexcludability, thereby the process, method, article or the device that make to comprise a series of key elements not only comprise those key elements, but also comprise other key elements of clearly not listing, or be also included as the intrinsic key element of this process, method, article or device.The in the situation that of more restrictions not, the key element being limited by statement " comprising ... ", and be not precluded within process, method, article or the device that comprises described key element and also have other identical element.
One of ordinary skill in the art will appreciate that all or part of step that realizes above-described embodiment can complete by hardware, also can come the hardware that instruction is relevant to complete by program, described program can be stored in a kind of computer-readable recording medium, the above-mentioned storage medium of mentioning can be ROM (read-only memory), disk or CD etc.
The above, it is only preferred embodiment of the present invention, not the present invention is done to any pro forma restriction, although the present invention discloses as above with preferred embodiment, yet not in order to limit the present invention, any those skilled in the art, do not departing within the scope of technical solution of the present invention, when can utilizing the technology contents of above-mentioned announcement to make a little change or being modified to the equivalent embodiment of equivalent variations, in every case be not depart from technical solution of the present invention content, any simple modification of above embodiment being done according to technical spirit of the present invention, equivalent variations and modification, all still belong in the scope of technical solution of the present invention.

Claims (12)

1. a method for testing software, is characterized in that, comprising:
Trial function is made an addition in the trial function list of at least one test script file, described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function;
Obtain the test parameter of test subscriber's input, according to described test parameter, search corresponding test script file;
Carry out in the test script file find or described test script file the trial function with described parameter correlation; And
Output test result.
2. method for testing software as claimed in claim 1, is characterized in that, the number of described test script file is a plurality of, includes a trial function list described in each in test script file.
3. method for testing software as claimed in claim 1, it is characterized in that, the described test parameter that obtains test subscriber's input, according to described test parameter, search in test script file that corresponding test script file and execution find or described test script file the step with the trial function of described parameter correlation, comprising:
The described test parameter that receives test subscriber's input, described test parameter comprises the routing information of described test script file;
According to described routing information, find all test script files that are stored under described path, and
Carry out all test script files that find.
4. method for testing software as claimed in claim 1, it is characterized in that, the described test parameter that obtains test subscriber's input, according to described test parameter, search in test script file that corresponding test script file and execution find or described test script file the step with the trial function of described parameter correlation, comprising:
The described test parameter that receives test subscriber's input, described test parameter comprises the title of routing information and the described test script file of described test script file;
According to the title of described routing information and described test script file, find the described test script file being stored under described path; And
Execution is stored in the described test script file under described path.
5. method for testing software as claimed in claim 1, it is characterized in that, the described test parameter that obtains test subscriber's input, according to described test parameter, search in test script file that corresponding test script file and execution find or described test script file the step with the trial function of described parameter correlation, comprising:
The described test parameter that receives test subscriber's input, described test parameter comprises the title of the routing information of described test script file, the title of described test script file and trial function; And
According to the title of described routing information and described test script file, find the described test script file being stored under described path;
Carry out in described test script file the trial function identical with trial function title in described test parameter.
6. method for testing software as claimed in claim 1, is characterized in that, described method further comprises:
Generate software test journal file, described software test journal file is used for recording test log information and test result.
7. a software testing device, is characterized in that, comprising:
Trial function adds module, and for trial function being made an addition to the trial function list of at least one test script file, described trial function is for realizing corresponding test assignment, and described trial function list comprises at least one trial function;
Parameter acquiring and search module, for obtaining the test parameter of test subscriber's input, searches corresponding test script file according to described test parameter;
Execution module, for carrying out the trial function of found test script file or described test script file and described parameter correlation; And
Output module, for outputing test result.
8. software testing device as claimed in claim 7, is characterized in that, the number of described test script file is a plurality of, includes a trial function list described in each in test script file.
9. software testing device as claimed in claim 7, it is characterized in that, described parameter acquiring and search module and comprise: the first test parameter acquisition module and first is searched module, wherein, the first test parameter acquisition module is for receiving the described test parameter of test subscriber's input, described test parameter comprises the routing information of described test script file, and described first searches module for find all test script files that are stored under described path according to described routing information; Described execution module is for carrying out found all test script files.
10. the software testing device of stating as claim 7, it is characterized in that, described parameter acquiring and search module and comprise: the second test parameter acquisition module and second is searched module, wherein, described the second test parameter acquisition module is for receiving the described test parameter of test subscriber's input, described test parameter comprises the title of routing information and the described test script file of described test script file, and described second searches module for find the described test script file being stored under described path according to the title of described routing information and described test script file; Described execution module is for carrying out the described test script file being stored under described path.
11. software testing devices as claimed in claim 7, it is characterized in that, described parameter acquiring and search module and comprise: the 3rd test parameter acquisition module and the 3rd is searched module, wherein, described the 3rd test parameter acquisition module is for receiving the described test parameter of test subscriber's input, described test parameter comprises the routing information of described test script file, the title of described test script file and the title of trial function, the described the 3rd searches module for find the described test script file being stored under described path according to the title of described routing information and described test script file, described execution module is for carrying out the trial function that described test script file is identical with trial function title in described test parameter.
12. software testing devices as claimed in claim 7, is characterized in that, described device further comprises:
Daily record generation module, for generating software test journal file, described software test journal file is used for recording test log information and test result.
CN201310159702.XA 2013-05-03 2013-05-03 Method for testing software and test device Active CN104133762B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201310159702.XA CN104133762B (en) 2013-05-03 2013-05-03 Method for testing software and test device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201310159702.XA CN104133762B (en) 2013-05-03 2013-05-03 Method for testing software and test device

Publications (2)

Publication Number Publication Date
CN104133762A true CN104133762A (en) 2014-11-05
CN104133762B CN104133762B (en) 2018-07-13

Family

ID=51806445

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201310159702.XA Active CN104133762B (en) 2013-05-03 2013-05-03 Method for testing software and test device

Country Status (1)

Country Link
CN (1) CN104133762B (en)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106484619A (en) * 2016-10-11 2017-03-08 武汉斗鱼网络科技有限公司 A kind of method of testing, server and system
CN106776261A (en) * 2015-11-23 2017-05-31 腾讯科技(深圳)有限公司 Object method of testing and device
CN107153615A (en) * 2017-05-19 2017-09-12 千寻位置网络有限公司 The method and system of software test, service terminal
CN107526685A (en) * 2017-09-11 2017-12-29 杭州迪普科技股份有限公司 A kind of method and device of test command row

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101025686A (en) * 2007-03-22 2007-08-29 中兴通讯股份有限公司 Automation test system and test script generating and operating method
US20090217302A1 (en) * 2008-02-27 2009-08-27 Accenture Global Services Gmbh Test script transformation architecture
CN102023861A (en) * 2010-12-08 2011-04-20 中兴通讯股份有限公司 Method and system for generating test script and test suite

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101025686A (en) * 2007-03-22 2007-08-29 中兴通讯股份有限公司 Automation test system and test script generating and operating method
US20090217302A1 (en) * 2008-02-27 2009-08-27 Accenture Global Services Gmbh Test script transformation architecture
CN102023861A (en) * 2010-12-08 2011-04-20 中兴通讯股份有限公司 Method and system for generating test script and test suite

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106776261A (en) * 2015-11-23 2017-05-31 腾讯科技(深圳)有限公司 Object method of testing and device
CN106776261B (en) * 2015-11-23 2021-03-12 腾讯科技(深圳)有限公司 Object testing method and device
CN106484619A (en) * 2016-10-11 2017-03-08 武汉斗鱼网络科技有限公司 A kind of method of testing, server and system
CN107153615A (en) * 2017-05-19 2017-09-12 千寻位置网络有限公司 The method and system of software test, service terminal
CN107526685A (en) * 2017-09-11 2017-12-29 杭州迪普科技股份有限公司 A kind of method and device of test command row

Also Published As

Publication number Publication date
CN104133762B (en) 2018-07-13

Similar Documents

Publication Publication Date Title
CN102436373B (en) Method for realizing resource loading and resource hot-updating in distributed enterprise application system
Flemons et al. A web-based GIS tool for exploring the world's biodiversity: The Global Biodiversity Information Facility Mapping and Analysis Portal Application (GBIF-MAPA)
US8140578B2 (en) Multilevel hierarchical associations between entities in a knowledge system
CN107832207A (en) Interface performance test method, apparatus, storage medium and computer equipment
CN104423961B (en) A kind of method and system for generating test script
CN102761628B (en) Pan-domain name identification and processing device and method
CN102236672A (en) Method and device for importing data
CN111240968A (en) Automatic test management method and system
CN105095207A (en) Methods for retrieving and obtaining contents of application software, and devices for retrieving and obtaining contents of application software
CN104133762A (en) Software test method and test device
CN102760096A (en) Test data generation method, unit testing method and unit testing system
CN103152391A (en) Journal output method and device
CN103246606A (en) Method and system for testing performances of ESB (enterprises service bus) platform
CN108255699A (en) regression testing method and device
Baysal et al. Mining usage data and development artifacts
CN103248511B (en) A kind of analysis methods, devices and systems of single-point service feature
Leno et al. Robidium: automated synthesis of robotic process automation scripts from UI logs
Bernaschina et al. Integrating modeling languages and web logs for enhanced user behavior analytics
CN110362341A (en) Business management method, device, equipment and storage medium based on micro services framework
CN108243238B (en) Method and device for acquiring performance data
CN101221502A (en) Case design method and device for software test
US20150169675A1 (en) Data access using virtual retrieve transformation nodes
CN114153732A (en) Fault scene testing method and device, electronic equipment and storage medium
WO2016090352A1 (en) Customized synthetic data creation
CN113515494B (en) Database processing method based on distributed file system and electronic equipment

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant