JP2013145443A - Test code generation device, test code generation method and test code generation program - Google Patents
Test code generation device, test code generation method and test code generation program Download PDFInfo
- Publication number
- JP2013145443A JP2013145443A JP2012005137A JP2012005137A JP2013145443A JP 2013145443 A JP2013145443 A JP 2013145443A JP 2012005137 A JP2012005137 A JP 2012005137A JP 2012005137 A JP2012005137 A JP 2012005137A JP 2013145443 A JP2013145443 A JP 2013145443A
- Authority
- JP
- Japan
- Prior art keywords
- test code
- user
- storage unit
- condition
- user 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.)
- Granted
Links
- 238000012360 testing method Methods 0.000 title claims abstract description 440
- 238000000034 method Methods 0.000 title claims description 20
- 238000012545 processing Methods 0.000 claims description 9
- 238000010586 diagram Methods 0.000 description 10
- 230000006870 function Effects 0.000 description 8
- 230000009471 action Effects 0.000 description 6
- 230000005540 biological transmission Effects 0.000 description 4
- 238000004891 communication Methods 0.000 description 4
- 230000008676 import Effects 0.000 description 4
- 238000004519 manufacturing process Methods 0.000 description 3
- 230000008569 process Effects 0.000 description 3
- 230000004044 response Effects 0.000 description 3
- 238000011161 development Methods 0.000 description 1
- 230000018109 developmental process Effects 0.000 description 1
- 230000002093 peripheral effect Effects 0.000 description 1
- 230000033772 system development Effects 0.000 description 1
Images
Landscapes
- Debugging And Monitoring (AREA)
- Stored Programmes (AREA)
Abstract
Description
本発明は、テスト対象であるソフトウェアプログラムに対するテストコードを生成する技術に関する。 The present invention relates to a technique for generating a test code for a software program to be tested.
ソフトウェアシステム開発におけるテスト工程において、そのソフトウェアシステムを構成するソフトウェアプログラム毎に、条件分岐や入出力の妥当性を検査する単体テストが行われる。特許文献1、2には、このようなテストを自動化する技術が記載されている。
図9は、テスト対象であるソフトウェアプログラムに対する条件と動作とが対応付けられている決定表(デシジョンテーブル)のデータ例を示す図である。この決定表には、条件を示す事前条件および入力値と、条件に応じた動作を示す期待結果とが対応付けられており、テストケースの列毎に入出力の妥当性を検査するテストが行われることを示している。例えば、テストケース「1」では、引数である整数型「int」の変数「cnt」の値が「1」である場合に、テスト対象の関数(メソッド)を実行した戻り値であるブール型「boolean」の変数「actual」の値が偽(false)であることが期待結果である。ここで、入力値に示される引数の値を代入してテスト対象のメソッドを実行させ、戻り値が期待結果に示される値であるか否かを判定する既定テストコードを記述して予め記憶しておき、既定テストコードに含まれる変数や値を決定表に示される値に置換すれば、自動的にテストコードを生成することができる。図10は、このような決定表と既定テストコードとに基づいて生成するテストコードの例を示す図である。符号aの箇所には変数に値を代入するテストコードが示されており、符号bの箇所には値を代入した変数を引数としてテスト対象の関数を実行するテストコードが示されており、符号cの箇所には符号bで実行したメソッドの戻り値の値を検査するテストコードが示されている。
In the test process in software system development, a unit test for checking the validity of conditional branching and input / output is performed for each software program constituting the software system.
FIG. 9 is a diagram illustrating a data example of a decision table (decision table) in which conditions and operations for a software program to be tested are associated with each other. In this decision table, preconditions and input values indicating conditions are associated with expected results indicating actions according to the conditions, and a test for checking the validity of input / output is performed for each column of test cases. It is shown that. For example, in the test case “1”, when the value of the variable “cnt” of the integer type “int” as an argument is “1”, the Boolean type “ The expected result is that the value of the “boolean” variable “actual” is false. Here, the value of the argument indicated in the input value is substituted to execute the test target method, and a default test code for determining whether the return value is the value indicated in the expected result is described and stored in advance. The test code can be automatically generated by replacing variables and values included in the default test code with values shown in the decision table. FIG. 10 is a diagram illustrating an example of a test code generated based on such a determination table and a predetermined test code. A test code for assigning a value to a variable is indicated at a symbol a, and a test code for executing a function to be tested with a variable assigned a value as an argument is indicated at a symbol b. A test code for inspecting a return value of the method executed by the symbol b is shown at a position c.
しかしながら、テスト対象の条件や動作は複雑なものである場合があり、全ての条件や動作に応じた既定テストコードを予め記憶しておくことは困難である。例えば、入力値として、テスト用に使用する値が記憶されたテストファイルを読み出し、読み出したテストファイルに含まれる値を引数として代入してテストを行いたい場合がある。このような状況に応じたテストコードを予め定めて記憶しておくことは困難である。また、テスト対象であるソフトウェアプログラムのプログラミング言語の仕様により、テストコードに独自の記述をしなければならない場合がある。そこで、ユーザの意図する様々なテストケースに応じたテストコードを、決定表に基づいて生成することが望ましい。 However, there are cases where conditions and operations to be tested are complicated, and it is difficult to previously store predetermined test codes corresponding to all conditions and operations. For example, there is a case where a test file in which a value used for a test is stored as an input value is read, and a test is performed by substituting the value included in the read test file as an argument. It is difficult to predetermine and store a test code corresponding to such a situation. In addition, depending on the specifications of the programming language of the software program to be tested, it may be necessary to describe the test code uniquely. Therefore, it is desirable to generate test codes according to various test cases intended by the user based on the decision table.
本発明は、このような状況に鑑みてなされたもので、ユーザの意図するテストケースに応じたテストコードを、決定表に基づいて生成するテストコード生成装置、テストコード生成方法、テストコード生成プログラムを提供する。 The present invention has been made in view of such a situation, and a test code generation device, a test code generation method, and a test code generation program for generating a test code corresponding to a test case intended by a user based on a decision table I will provide a.
上述した課題を解決するために、本発明は、テスト対象であるソフトウェアプログラムの処理における条件と、条件に対応する動作とが対応付けられた複数のテストケースが含まれる決定表が記憶されている決定表記憶部と、条件または動作に対応する既定テストコードが予め記憶されている既定テストコード記憶部と、ユーザから入力された、条件または動作に対応するユーザテストコードが記憶されるユーザテストコード記憶部と、ユーザテストコードの入力を受け付け、入力されたユーザテストコードをユーザテストコード記憶部に記憶させる入力部と、条件または動作毎に、条件または動作に対応するユーザテストコードがユーザテストコード記憶部に記憶されているか否かを判定する判定部と、判定部が、条件または動作に対応するユーザテストコードがユーザテストコード記憶部に記憶されていると判定した場合、条件または動作に応じたユーザテストコードをユーザテストコード記憶部から読み出し、条件または動作に対応するユーザテストコードがユーザテストコード記憶部に記憶されていないと判定した場合、条件または動作に応じた既定テストコードを既定テストコード記憶部から読み出し、読み出したユーザテストコードまたは既定テストコードに基づいてテストコードを生成するテストコード生成部と、を備えることを特徴とするテストコード生成装置である。 In order to solve the above-described problem, the present invention stores a decision table including a plurality of test cases in which conditions in processing of a software program to be tested are associated with operations corresponding to the conditions. A determination table storage unit, a default test code storage unit in which a default test code corresponding to a condition or operation is stored in advance, and a user test code in which a user test code corresponding to the condition or operation input from the user is stored A storage unit, an input unit that accepts input of a user test code, stores the input user test code in the user test code storage unit, and a user test code corresponding to the condition or operation for each condition or operation is a user test code The determination unit that determines whether or not the data is stored in the storage unit, and the determination unit corresponds to the condition or the operation. When it is determined that the user test code is stored in the user test code storage unit, the user test code corresponding to the condition or operation is read from the user test code storage unit, and the user test code corresponding to the condition or operation is the user test code Test code generation that reads the default test code corresponding to the condition or operation from the default test code storage unit and generates the test code based on the read user test code or the default test code when it is determined that it is not stored in the storage unit A test code generating device.
また、本発明は、判定部が、決定表における条件または動作に、予め定められた識別情報が対応付けられている場合、条件または動作に対応するユーザテストコードがユーザテストコード記憶部に記憶されていると判定することを特徴とする。 Further, according to the present invention, when the determination unit associates predetermined identification information with the condition or operation in the determination table, the user test code corresponding to the condition or operation is stored in the user test code storage unit. It is characterized by determining that it is.
また、本発明は、決定表記憶部には、テスト対象毎に異なる複数の決定表が記憶され、ユーザテストコード記憶部には、複数の決定表のそれぞれに対応するユーザテストコードである内部コード定義情報と、複数の決定表に共通して使用するユーザテストコードである外部コード定義情報とが記憶され、テストコード生成部は、条件または動作に対応するユーザテストコードが内部コード定義情報に含まれていれば、内部コード定義情報に含まれるユーザテストコードを読み出し、条件または動作に対応するユーザテストコードが内部コード定義情報に含まれていなければ、外部コード定義情報に含まれるユーザテストコードを読み出すことを特徴とする。 In the present invention, the decision table storage unit stores a plurality of different decision tables for each test target, and the user test code storage unit stores an internal code that is a user test code corresponding to each of the plurality of decision tables. Definition information and external code definition information, which is user test code used in common for multiple decision tables, are stored, and the test code generator includes user test code corresponding to conditions or actions in internal code definition information If the user test code included in the internal code definition information is not included in the internal code definition information, the user test code included in the external code definition information is read out. It is characterized by reading.
また、本発明は、上述のユーザテストコードには、予め定められた第1の文字列が含まれており、決定表には、第1の文字列を置換する第2の文字列が含まれており、テストコード生成部は、ユーザテストコードに含まれる第1の文字列を、第2の文字列に置換したテストコードを生成することを特徴とする。 In the present invention, the above-described user test code includes a predetermined first character string, and the determination table includes a second character string that replaces the first character string. The test code generation unit generates a test code in which the first character string included in the user test code is replaced with the second character string.
また、本発明は、テスト対象であるソフトウェアプログラムの処理における条件と、条件に対応する動作とが対応付けられた複数のテストケースが含まれる決定表が記憶されている決定表記憶部と、条件または動作に対応する既定テストコードが予め記憶されている既定テストコード記憶部と、ユーザから入力された、条件または動作に対応するユーザテストコードが記憶されるユーザテストコード記憶部と、を備えたテストコード生成装置のテストコード生成方法であって、ユーザテストコードの入力を受け付け、入力されたユーザテストコードをユーザテストコード記憶部に記憶させるステップと、条件または動作毎に、条件または動作に対応するユーザテストコードがユーザテストコード記憶部に記憶されているか否かを判定するステップと、条件または動作に対応するユーザテストコードがユーザテストコード記憶部に記憶されていると判定した場合、条件または動作に応じたユーザテストコードをユーザテストコード記憶部から読み出し、条件または動作に対応するユーザテストコードがユーザテストコード記憶部に記憶されていないと判定した場合、条件または動作に応じた既定テストコードを既定テストコード記憶部から読み出し、読み出したユーザテストコードまたは既定テストコードに基づいてテストコードを生成するステップと、を備えることを特徴とするテストコード生成方法である。 Further, the present invention provides a decision table storage unit that stores a decision table including a plurality of test cases in which conditions in processing of a software program to be tested and operations corresponding to the conditions are associated with each other. Alternatively, a default test code storage unit in which a default test code corresponding to an operation is stored in advance, and a user test code storage unit in which a user test code input from a user and corresponding to a condition or an operation is stored are provided. A test code generation method for a test code generation device that accepts input of a user test code, stores the input user test code in a user test code storage unit, and corresponds to the condition or operation for each condition or operation A step for determining whether or not a user test code to be stored is stored in the user test code storage unit. If the user test code corresponding to the condition or operation is determined to be stored in the user test code storage unit, the user test code corresponding to the condition or operation is read from the user test code storage unit and When it is determined that the corresponding user test code is not stored in the user test code storage unit, the default test code corresponding to the condition or operation is read from the default test code storage unit, and based on the read user test code or default test code And a step of generating a test code.
また、本発明は、テスト対象であるソフトウェアプログラムの処理における条件と、条件に対応する動作とが対応付けられた複数のテストケースが含まれる決定表が記憶されている決定表記憶部と、条件または動作に対応する既定テストコードが予め記憶されている既定テストコード記憶部と、ユーザから入力された、条件または動作に対応するユーザテストコードが記憶されるユーザテストコード記憶部と、を備えたテストコード生成装置のコンピュータに、ユーザテストコードの入力を受け付け、入力されたユーザテストコードをユーザテストコード記憶部に記憶させるステップと、条件または動作毎に、条件または動作に対応するユーザテストコードがユーザテストコード記憶部に記憶されているか否かを判定するステップと、条件または動作に対応するユーザテストコードがユーザテストコード記憶部に記憶されていると判定した場合、条件または動作に応じたユーザテストコードをユーザテストコード記憶部から読み出し、条件または動作に対応するユーザテストコードがユーザテストコード記憶部に記憶されていないと判定した場合、条件または動作に応じた既定テストコードを既定テストコード記憶部から読み出し、読み出したユーザテストコードまたは既定テストコードに基づいてテストコードを生成するステップと、を実行させるテストコード生成プログラムである。 Further, the present invention provides a decision table storage unit that stores a decision table including a plurality of test cases in which conditions in processing of a software program to be tested and operations corresponding to the conditions are associated with each other. Alternatively, a default test code storage unit in which a default test code corresponding to an operation is stored in advance, and a user test code storage unit in which a user test code input from a user and corresponding to a condition or an operation is stored are provided. The computer of the test code generation device accepts input of a user test code, stores the input user test code in the user test code storage unit, and a user test code corresponding to the condition or operation for each condition or operation A step for determining whether or not it is stored in the user test code storage unit, and a condition When it is determined that the user test code corresponding to the operation is stored in the user test code storage unit, the user test code corresponding to the condition or operation is read from the user test code storage unit, and the user test corresponding to the condition or operation is read If it is determined that the code is not stored in the user test code storage unit, the default test code corresponding to the condition or operation is read from the default test code storage unit, and the test code is determined based on the read user test code or the default test code. A test code generating program for executing the generating step.
以上説明したように、本発明によれば、テスト対象であるソフトウェアプログラムの条件と対応する動作とが対応付けられた決定表と、条件または動作に対応する既定テストコードと、条件または動作に対応するユーザテストコードとを記憶し、入力されたユーザテストコードをユーザテストコード記憶部に記憶させ、条件または動作毎に、対応するユーザテストコードが記憶されているか否かを判定し、対応するユーザテストコードが記憶されていると判定した場合、その条件または動作に応じたユーザテストコードを読み出し、条件または動作に対応するユーザテストコードが記憶されていないと判定した場合、その条件または動作に応じた既定テストコードを読み出し、読み出したユーザテストコードまたは既定テストコードに基づいてテストコードを生成するようにしたので、様々なテストケースに応じたテストコードを、決定表に基づいて生成することができる。 As described above, according to the present invention, the determination table in which the condition of the software program to be tested and the corresponding operation are associated, the default test code corresponding to the condition or the operation, and the condition or the operation are supported. The user test code to be stored, the input user test code is stored in the user test code storage unit, it is determined whether or not the corresponding user test code is stored for each condition or operation, and the corresponding user If it is determined that the test code is stored, the user test code corresponding to the condition or operation is read. If it is determined that the user test code corresponding to the condition or operation is not stored, the test code is determined according to the condition or operation. Read the default test code and based on the read user test code or default test code Since so as to generate the test code, the test code in response to a variety of test cases can be generated based on the decision table.
以下、本発明の一実施形態について、図面を参照して説明する。
図1は、本実施形態によるテストコード生成装置100の構成を示すブロック図である。テストコード生成装置100は、テスト対象であるソフトウェアプログラムをテストするテストコードを生成するコンピュータ装置であり、決定表生成部110と、入力部120と、記憶部130と、判定部140と、テストコード生成部150とを備えている。本実施形態によるテストコード生成装置100が提供するテストコード生成機能は、例えばソフトウェアの統合開発環境に対するアドオンとして実装することができる。
Hereinafter, an embodiment of the present invention will be described with reference to the drawings.
FIG. 1 is a block diagram showing a configuration of a test
決定表生成部110は、テスト対象であるソフトウェアプログラムをテストするための決定表を生成する。例えば、決定表生成部110は、決定表の雛形を予め自身の記憶領域に記憶している。図2は、決定表生成部110が記憶している決定表の雛形の例を示す図である。決定表には、テスト対象であるクラスとメソッドとを識別する情報が含まれる。この例では、決定表には、テスト対象であるソフトウェアプログラム名を示す「テスト対象クラス」の欄と、テスト対象であるソフトウェアプログラムの関数を示す「テスト対象メソッド」の欄とが含まれる。ここでは、テスト対象であるソフトウェアプログラムが、オブジェクト指向のプログラミング言語であるJAVA(登録商標)によって記述されている例を説明するため、テスト対象の単位をクラスやメソッドとして示すが、手続き型や関数型のプログラミング言語をテスト対象とすることもできる。この場合、例えばテスト対象をファイル名としたり、関数名としたりすることができる。決定表には、条件を示す事前条件および入力値と、条件に応じた動作を示す期待値とが対応付けられており、テストケースの列毎に入出力の妥当性を検査するテストが行われることを示している。このような決定表は、例えば表計算ソフトによって生成されたファイルにおけるシートとして記憶されている。
The
また、決定表生成部110は、ユーザからの要求に応じて、このような決定表の雛形をコピーして、テスト対象のクラス、メソッド毎の決定表を生成し、記憶部130の決定表記憶部131に記憶させる。ここで、決定表生成部110は、例えば単体テストの対象であるソフトウェアプログラムを外部の記憶部から読み出して解析し、テスト対象のクラス名、メソッド名、引数、戻り値等の情報を読み込んで、決定表における対象や要素、値に情報を追記して決定表生成部110に記憶させることもできる。
Further, the decision
入力部120は、キーボードやマウス等の入力デバイスを備えており、ユーザからの情報の入力を受け付ける。例えば、入力部120は、決定表に対する追記情報の入力を受け付けて決定表記憶部131に記憶させたり、後述するユーザテストコードの入力を受け付け、入力されたユーザテストコードを記憶部130のユーザテストコード記憶部133に記憶させたりする。
The
記憶部130は、決定表記憶部131と、既定テストコード記憶部132と、ユーザテストコード記憶部133と、クラス指定表記憶部134とを備えており、テストコード生成のための各種情報が記憶される。
決定表記憶部131には、テスト対象であるソフトウェアプログラムの処理における条件と、その条件に対応する動作とが対応付けられた複数のテストケースが含まれる決定表が記憶されている。決定表は、決定表生成部110によって生成され、ユーザから入力部120に入力された情報が追記され、決定表記憶部131に記憶される。決定表記憶部131には、クラス、メソッド等のテスト対象毎に異なる複数の決定表が記憶される。図3は、決定表記憶部131に記憶されている決定表のデータ例を示す図である。決定表には、事前条件、入力値、期待結果のブロック毎に、テストのための動作や条件が対応付けられている。このような決定表に基づいて、後述するテストコード生成部150によりテストコードが生成される。
The
The decision
ここで、テストコードは、従来、決定表に含まれる情報と既定テストコード記憶部132に記憶されている既定テストコードとに基づいて生成されるが、様々なテストケースの全てに対応する既定テストコードを予め既定テストコード記憶部132に記憶しておくことは困難である。そこで、本実施形態では、決定表に予め定められたコード種別識別情報が対応付けられている項目については、既定テストコード記憶部132に記憶された既定テストコードではなく、ユーザテストコード記憶部133に記憶されているユーザテストコードに基づいてテストコードが生成される。例えば、この例では、コード種別識別情報として2列目のセルに「#」を対応付ける例を示している。また、決定表記憶部131に記憶される決定表において、コード種別識別情報が対応付けられたブロックには、ユーザテストコードにおいて定められた記法により示された場合に置換されることを示す第1の文字列と、その記法により示された第1の文字列を置換する第2の文字列とが含まれる。ここでは、「要素」の項目に第1の文字列である「class」と「data」とが対応付けられており、「値」の項目に第2の文字列である「MyBean」と「AMD0021」とが対応付けられている。
Here, the test code is conventionally generated based on the information included in the decision table and the default test code stored in the default test
既定テストコード記憶部132には、決定表に含まれる条件または動作に対応する既定テストコードが予め記憶されている。既定テストコードは、従来と同様の構成であり、例えば、決定表に含まれる引数を変数に代入するテストコードや、テスト対象であるメソッドを実行した戻り値が、決定表に含まれる期待結果に示される戻り値と一致するか否かを判定するテストコード等である。
In the default test
ユーザテストコード記憶部133には、ユーザから入力された、決定表における条件または動作に対応するユーザテストコードが記憶される。図4は、ユーザテストコード記憶部133に記憶されるユーザテストコードのデータ例を示す図である。ユーザテストコード記憶部133には、キー名と、ユーザテストコードと、インポート文と、コメントとが対応付けられて記憶される。キー名は、決定表における「対象」に対応する項目であり、対応するユーザテストコードを識別する情報である。ユーザテストコードは、生成されるテストコードのうち定められた箇所に挿入される。インポート文は、対応するユーザテストコードを実行するために必要なクラスを示す。コメントは、対応するユーザテストコードを説明するコメントである。
The user test
この例では、例えば、一行目には、決定表における入力値における「対象」の項目に「ListObjectGeneration」の文字列が対応付けられており、この文字列をキー名とした情報が記憶されている。ここで、ユーザテストコードには「${data}」や「${class}」等の文字列が含まれている。これは、決定表において指定することによって可変な項目であり、定められた記法により示された第1の文字列である。ここでは、ユーザテストコードにおける「${」から「}」までの箇所を、決定表において「${」から「}」に囲まれた文字列に対応する値に置換することを示している。例えば、決定表において「class」(第1の文字列)に「MyBean」(第2の文字列)が対応付けられているため、ユーザテストコードにおいて「List<${class}>」と記載された箇所は、「List<MyBean>」と置換される。このような置換処理は、テストコード生成部150によってテストコード生成時に行われる。ここでは、ユーザテストコードは、図に示すような表形式にて示される。このユーザテストコードは、決定表が表計算ソフトのファイルにおけるシートであれば、同一ファイルの別シートとして記憶されるようにしても良い。
In this example, for example, in the first line, the character string “ListObjectGeneration” is associated with the item “target” in the input value in the decision table, and information using this character string as a key name is stored. . Here, the user test code includes character strings such as “$ {data}” and “$ {class}”. This is an item that can be changed by designating in the decision table, and is a first character string indicated by a predetermined notation. Here, the part from “$ {” to “}” in the user test code is replaced with a value corresponding to the character string surrounded by “$ {” to “}” in the decision table. For example, since “MyBean” (second character string) is associated with “class” (first character string) in the decision table, “List <$ {class}>” is described in the user test code. This place is replaced with “List <MyBean>”. Such replacement processing is performed by the test
クラス指定表記憶部134には、テストコードにおける、事前条件と入力値と期待結果以外の箇所に挿入するテストコードに関する情報であるクラス指定表が記憶される。図5は、クラス指定表記憶部134に記憶されるクラス指定表のデータ例を示す図である。ここでは、例えば「クラス外」、「クラスメンバ」、「setUp」等のブロック毎に、挿入するユーザテストコードを識別するキー名が対応付けられている。キー名に対応するユーザテストコードは、ユーザテストコード記憶部133に記憶されている。クラス指定表についても、決定表が表計算ソフトのファイルにおけるシートであれば、同一ファイルの別シートとして記憶されるようにしても良い。
The class designation
判定部140は、決定表における条件または動作毎に、その条件または動作に対応するユーザテストコードがユーザテストコード記憶部133に記憶されているか否かを判定する。例えば、判定部140は、決定表における条件または動作のブロックに、予め定められたコード種別識別情報が対応付けられている場合、その条件または動作に対応するユーザテストコードが決定表記憶部131に記憶されていると判定する。
For each condition or operation in the decision table, the
テストコード生成部150は、記憶部130に記憶されている情報に基づいて、テストコードを生成する。ここで、テストコード生成部150は、判定部140が、決定表における条件または動作に対応するユーザテストコードがユーザテストコード記憶部133に記憶されていると判定した場合、その条件または動作に応じたユーザテストコードをユーザテストコード記憶部133から読み出し、一方、判定部140が、その条件または動作に対応するユーザテストコードがユーザテストコード記憶部133に記憶されていないと判定した場合、その条件または動作に応じた既定テストコードを既定テストコード記憶部132から読み出す。テストコード生成部150は、読み出したユーザテストコードまたは既定テストコードに基づいて、テストコードを生成し、生成したテストコードを自身の記憶領域に記憶する。この際、テストコード生成部150は、ユーザテストコードに第1の文字列が含まれていれば、第1の文字列を第2の文字列に置換したテストコードを生成する。テストコード生成部150は、例えばテスト実行ツール等に、生成したテストコードを出力する。
The test
図6は、テストコード生成部150が生成するテストコードのデータ例を示す図である。符号aに示す箇所には、インポート文が記載される。符号bに示す箇所には、クラス指定表において「クラス外」の項目に指定されたユーザテストコードが挿入されている。符号cに示す箇所には、テストを実行するテストクラスが記載されている。符号dに示す箇所には、クラス指定表において「クラスメンバ」の項目に指定されたユーザテストコードが挿入されている。符号eに示す箇所には、クラス指定表において「setUp」の項目に指定されたユーザテストコードが挿入されている。
FIG. 6 is a diagram illustrating an example of test code data generated by the test
符号fに示す箇所には、決定表における「入力値」の項目に指定されたユーザテストコードが挿入されている。符号gに示す箇所には、既定テストコードが挿入されており、テスト対象のメソッドの実行文が記載されている。符号hに示す箇所には、既定テストコードが挿入されており、期待結果の判定文が記載されている。符号iに示す箇所には、決定表における「期待結果」の項目に指定されたユーザテストコードが挿入されている。このようなテストコードが実行されることにより、ユーザの意図に応じたテストを行うことができる。 A user test code designated in the item “input value” in the determination table is inserted at a position indicated by a symbol f. A predetermined test code is inserted at a position indicated by a symbol g, and an executable statement of a test target method is described. A predetermined test code is inserted at a position indicated by a symbol h, and a determination sentence of an expected result is described. A user test code designated in the item “expected result” in the decision table is inserted at a position indicated by a symbol i. By executing such a test code, it is possible to perform a test according to the user's intention.
次に、図面を参照して、本実施形態によるテストコード生成装置100の動作例を説明する。図7は、本実施形態によるテストコード生成装置100の動作例を示すフローチャートである。
決定表生成部110は、自身の記憶領域に記憶されている決定表雛形をコピーして決定表を生成し、決定表記憶部131に記憶させる。ユーザからの操作要求に応じて、テストコード生成装置100は、決定表記憶部131に記憶されている決定表を読み出し、ディスプレイに表示させる(ステップS1)。入力部120は、ユーザから、決定表のうち、ユーザテストコードによるテストを実行したい箇所に対するコード種別識別情報(#)の入力を受け付ける(ステップS2)。
Next, an operation example of the test
The decision
また、入力部120は、ステップS2においてコード種別識別情報が入力されたブロックに対するユーザテストコードの入力を受け付け、ユーザテストコード記憶部133に記憶させる(ステップS3)。また、入力部120は、クラス指定表に対する入力を受け付け、クラス指定表記憶部134に記憶させる(ステップS4)。同様に、入力部120は、ステップS4においてクラス指定表にコード種別識別情報が入力された箇所に対するユーザテストコードの入力を受け付け、ユーザテストコード記憶部133に記憶させる(ステップS5)。
Further, the
ユーザから、入力部120にテストコード生成要求が入力されると、テストコード生成部150は、テストコードの生成を開始する(ステップS6)。まず、テストコード生成部150は、クラス指定表記憶部134に記憶されているクラス指定表と、クラス指定表に示されるキー名に対応付けられてユーザテストコード記憶部133に記憶されているユーザテストコードを読み出す。テストコード生成部150は、クラス指定表に示されるブロックの対応箇所に、ユーザテストコードを挿入する(ステップS7)。
When a test code generation request is input from the user to the
テストコード生成部150は、決定表に含まれるテストケース毎にテストコードを生成する(ステップS8)。テストコード生成部150は、決定表のブロック毎に、コード種別識別情報が対応付けられているか否かを判定する(ステップS9)。テストコード生成部150は、コード種別識別情報が対応付けられていると判定すると(ステップS9:YES)、対応するキー名に対応付けられてユーザテストコード記憶部133に記憶されているユーザテストコードとインポート文とコメントとを読み出し、テストコードに挿入する。また、ユーザテストコードに定められた第1の文字列が含まれていれば、決定表から第2の文字列を読み出して置換する(ステップS10)。
The test
一方、ステップS9において、コード種別識別情報が対応付けられていないと判定すると(ステップS9:NO)、既定テストコード記憶部132から対応する既定テストコードを読み出し、テストコードに挿入する(ステップS11)。テストコード生成部150は、全てのテストケースに対応するテストコードを生成していなければ(ステップS12:NO)、ステップS8に戻る。全てのテストケースに対応するテストコードを生成すれば(ステップS12:YES)、処理を終了する。
On the other hand, if it is determined in step S9 that the code type identification information is not associated (step S9: NO), the corresponding default test code is read from the default test
なお、本実施形態では、特定の決定表に対するユーザテストコードがユーザテストコード記憶部133に記憶される例を示したが、例えば複数の決定表に共通して使用するユーザテストコードを定義することもできる。この場合、ユーザテストコード記憶部133には、複数の決定表のそれぞれに対応するユーザテストコードである内部コード定義表と、複数の決定表に共通して使用するユーザテストコードである外部コード定義表が記憶される。すなわち、単一の決定表について使用するユーザテストコードを定義する内部コード定義表とは別に、複数のクラスが含まれるパッケージにおいて共通して使用するテストコードを定義する外部コード定義表を予めユーザテストコード記憶部133に記憶させておく。
In the present embodiment, an example is shown in which the user test code for a specific decision table is stored in the user test
そして、テストコード生成部150は、決定表に含まれる条件または動作に対応するユーザテストコードが内部コード定義表に含まれていれば、その内部コード定義表に含まれるユーザテストコードを読み出し、決定表に含まれる条件または動作に対応するユーザテストコードが内部コード定義表に含まれていなければ、外部コード定義表に含まれるユーザテストコードを読み出す。すなわち、テストコード生成部150は、決定表記憶部131に記憶されているユーザ定義表にコード種別識別情報が記載されている場合、まず内部コード定義表を読み出し、対応するユーザテストコードが内部コード定義表に含まれるか否かを判定する。ユーザテストコードが内部コード定義表に含まれていれば、そのユーザテストコードを読み出してテストコードに挿入する。ユーザテストコードが内部コード定義表に含まれていなければ、外部コード定義表を読み出し、対応するユーザテストコードを読み出してテストコードに挿入する。
Then, if a user test code corresponding to the condition or action included in the determination table is included in the internal code definition table, the test
これにより、内部コード定義表と外部コード定義表とに同一のキー名が存在する場合には、内部コード定義表に記憶されているユーザテストコードが優先的に適用される。すなわち、同一のパッケージに含まれる複数のクラスに同一のキー名のユーザテストコードを利用させたい場合でも、特定のクラスにのみ異なるユーザテストコードを利用させたい場合があるからである。ここでは、外部コード定義表のみを利用させ、内部コード定義表を利用させないようにすることもできる。この場合、内部コード定義表にキー名に対応するユーザテストコードが記憶されていても、内部コード定義表からユーザテストコードを読み出さず、外部コード定義表からユーザテストコードを読み出してテストコードに挿入する。図8は、使用するコード定義に関する情報を定める設定ファイルのデータ例を示す図である。符号aと符号bとの箇所には、外部コード定義表のパスが示されており、符号cの箇所には、内部コード定義表の使用可否を定める情報が示されている。 Thus, when the same key name exists in the internal code definition table and the external code definition table, the user test code stored in the internal code definition table is preferentially applied. That is, even if it is desired to use a user test code with the same key name for a plurality of classes included in the same package, there are cases where it is desired to use a different user test code only for a specific class. Here, it is possible to use only the external code definition table and not use the internal code definition table. In this case, even if the user test code corresponding to the key name is stored in the internal code definition table, the user test code is not read from the internal code definition table, but is read from the external code definition table and inserted into the test code. To do. FIG. 8 is a diagram illustrating an example of data in a setting file that defines information regarding a code definition to be used. The path of the code a and the code b shows the path of the external code definition table, and the code c shows information that determines whether or not the internal code definition table can be used.
以上説明したように、本実施形態によれば、予め定められた既定テストコードが存在する場合には既定テストコードに基づいて従来通りにテストコードを生成し、ユーザからコード種別識別情報が記入されたブロックについては、ユーザテストコード記憶部133に記憶されたユーザテストコードに基づいてテストコードを生成するようにした。これにより、既定テストコードとは異なる動作によりソフトウェアプログラムのテストを行いたい場合にも、決定表とユーザテストコードとを記憶部130に記憶させることにより、ユーザの意図した動作によるテストを行うことが可能となる。また、テストコード生成装置100は、複数のテストケースについて同様のユーザテストコードを挿入したい場合にも、テストコード生成装置100がユーザテストコード記憶部133からユーザテストコードを読み出して、異なるテストケースに同一のテストコードを自動的に挿入する。このため、ユーザはテストコードにおけるテストケース毎に同一のテストコードを繰り返し記載しなくとも、決定表とユーザテストコードとに必要な情報を記載することによって、簡単にテストコードを生成させることができる。このように、本実施形態のテストコード生成装置100によれば、従来プログラマが作成していた複雑なテストコードを自動で生成することができるため、テスト工程における工数削減をすることができる。
As described above, according to this embodiment, when a predetermined default test code exists, a test code is generated as usual based on the default test code, and the code type identification information is entered from the user. For the blocks, the test code is generated based on the user test code stored in the user test
なお、本発明における処理部の機能を実現するためのプログラムをコンピュータ読み取り可能な記録媒体に記録して、この記録媒体に記録されたプログラムをコンピュータシステムに読み込ませ、実行することによりテストコードの生成を行ってもよい。なお、ここでいう「コンピュータシステム」とは、OSや周辺機器等のハードウェアを含むものとする。また、「コンピュータシステム」は、ホームページ提供環境(あるいは表示環境)を備えたWWWシステムも含むものとする。また、「コンピュータ読み取り可能な記録媒体」とは、フレキシブルディスク、光磁気ディスク、ROM、CD−ROM等の可搬媒体、コンピュータシステムに内蔵されるハードディスク等の記憶装置のことをいう。さらに「コンピュータ読み取り可能な記録媒体」とは、インターネット等のネットワークや電話回線等の通信回線を介してプログラムが送信された場合のサーバやクライアントとなるコンピュータシステム内部の揮発性メモリ(RAM)のように、一定時間プログラムを保持しているものも含むものとする。 A program for realizing the function of the processing unit in the present invention is recorded on a computer-readable recording medium, and the program recorded on the recording medium is read into a computer system and executed to generate a test code. May be performed. Here, the “computer system” includes an OS and hardware such as peripheral devices. The “computer system” includes a WWW system having a homepage providing environment (or display environment). The “computer-readable recording medium” refers to a storage device such as a flexible medium, a magneto-optical disk, a portable medium such as a ROM and a CD-ROM, and a hard disk incorporated in a computer system. Further, the “computer-readable recording medium” refers to a volatile memory (RAM) in a computer system that becomes a server or a client when a program is transmitted via a network such as the Internet or a communication line such as a telephone line. In addition, those holding programs for a certain period of time are also included.
また、上記プログラムは、このプログラムを記憶装置等に格納したコンピュータシステムから、伝送媒体を介して、あるいは、伝送媒体中の伝送波により他のコンピュータシステムに伝送されてもよい。ここで、プログラムを伝送する「伝送媒体」は、インターネット等のネットワーク(通信網)や電話回線等の通信回線(通信線)のように情報を伝送する機能を有する媒体のことをいう。また、上記プログラムは、前述した機能の一部を実現するためのものであっても良い。さらに、前述した機能をコンピュータシステムにすでに記録されているプログラムとの組み合わせで実現できるもの、いわゆる差分ファイル(差分プログラム)であっても良い。 The program may be transmitted from a computer system storing the program in a storage device or the like to another computer system via a transmission medium or by a transmission wave in the transmission medium. Here, the “transmission medium” for transmitting the program refers to a medium having a function of transmitting information, such as a network (communication network) such as the Internet or a communication line (communication line) such as a telephone line. The program may be for realizing a part of the functions described above. Furthermore, what can implement | achieve the function mentioned above in combination with the program already recorded on the computer system, what is called a difference file (difference program) may be sufficient.
100 テストコード生成装置
110 決定表生成部
120 入力部
130 記憶部
131 決定表記憶部
132 既定テストコード記憶部
133 ユーザテストコード記憶部
134 クラス定義表記憶部
140 判定部
150 テストコード生成部
DESCRIPTION OF
Claims (6)
前記条件または前記動作に対応する既定テストコードが予め記憶されている既定テストコード記憶部と、
ユーザから入力された、前記条件または前記動作に対応するユーザテストコードが記憶されるユーザテストコード記憶部と、
前記ユーザテストコードの入力を受け付け、入力されたユーザテストコードを前記ユーザテストコード記憶部に記憶させる入力部と、
前記条件または前記動作毎に、当該条件または動作に対応する前記ユーザテストコードが前記ユーザテストコード記憶部に記憶されているか否かを判定する判定部と、
前記判定部が、前記条件または動作に対応する前記ユーザテストコードが前記ユーザテストコード記憶部に記憶されていると判定した場合、当該条件または動作に応じた前記ユーザテストコードを前記ユーザテストコード記憶部から読み出し、前記条件または動作に対応する前記ユーザテストコードが前記ユーザテストコード記憶部に記憶されていないと判定した場合、当該条件または動作に応じた前記既定テストコードを前記既定テストコード記憶部から読み出し、読み出した前記ユーザテストコードまたは前記既定テストコードに基づいてテストコードを生成するテストコード生成部と、
を備えることを特徴とするテストコード生成装置。 A decision table storage unit that stores a decision table including a plurality of test cases in which conditions in processing of a software program to be tested and operations corresponding to the conditions are associated;
A default test code storage unit in which a default test code corresponding to the condition or the operation is stored in advance;
A user test code storage unit in which a user test code corresponding to the condition or the operation input from a user is stored;
An input unit that receives input of the user test code and stores the input user test code in the user test code storage unit;
A determination unit that determines whether or not the user test code corresponding to the condition or operation is stored in the user test code storage unit for each of the condition or the operation;
When the determination unit determines that the user test code corresponding to the condition or operation is stored in the user test code storage unit, the user test code corresponding to the condition or operation is stored in the user test code storage If the user test code corresponding to the condition or operation is not stored in the user test code storage unit, the default test code corresponding to the condition or operation is determined as the default test code storage unit. A test code generation unit that generates a test code based on the read user test code or the default test code,
A test code generation device comprising:
ことを特徴とする請求項1に記載のテストコード生成装置。 The determination unit stores the user test code corresponding to the condition or operation in the user test code storage unit when predetermined identification information is associated with the condition or the operation in the determination table. The test code generation device according to claim 1, wherein the test code generation device is determined to be performed.
前記ユーザテストコード記憶部には、前記複数の決定表のそれぞれに対応するユーザテストコードである内部コード定義情報と、前記複数の決定表に共通して使用するユーザテストコードである外部コード定義情報とが記憶され、
前記テストコード生成部は、前記条件または動作に対応する前記ユーザテストコードが前記内部コード定義情報に含まれていれば、当該内部コード定義情報に含まれるユーザテストコードを読み出し、前記条件または動作に対応する前記ユーザテストコードが前記内部コード定義情報に含まれていなければ、前記外部コード定義情報に含まれるユーザテストコードを読み出す
ことを特徴とする請求項1または請求項2に記載のテストコード生成装置。 The decision table storage unit stores a plurality of the decision tables different for each test target,
The user test code storage unit includes internal code definition information that is a user test code corresponding to each of the plurality of decision tables, and external code definition information that is a user test code commonly used for the plurality of decision tables. Is remembered,
The test code generation unit reads the user test code included in the internal code definition information if the user test code corresponding to the condition or operation is included in the internal code definition information, The test code generation according to claim 1 or 2, wherein if the corresponding user test code is not included in the internal code definition information, the user test code included in the external code definition information is read out. apparatus.
前記決定表には、前記第1の文字列を置換する第2の文字列が含まれており、
前記テストコード生成部は、前記ユーザテストコードに含まれる前記第1の文字列を、前記第2の文字列に置換した前記テストコードを生成する
ことを特徴とする請求項1から請求項3までのいずれか1項に記載のテストコード生成装置。 The user test code includes a predetermined first character string,
The determination table includes a second character string that replaces the first character string,
The test code generation unit generates the test code by replacing the first character string included in the user test code with the second character string. The test code generation device according to any one of the above.
前記ユーザテストコードの入力を受け付け、入力されたユーザテストコードを前記ユーザテストコード記憶部に記憶させるステップと、
前記条件または前記動作毎に、当該条件または動作に対応する前記ユーザテストコードが前記ユーザテストコード記憶部に記憶されているか否かを判定するステップと、
前記条件または動作に対応する前記ユーザテストコードが前記ユーザテストコード記憶部に記憶されていると判定した場合、当該条件または動作に応じた前記ユーザテストコードを前記ユーザテストコード記憶部から読み出し、前記条件または動作に対応する前記ユーザテストコードが前記ユーザテストコード記憶部に記憶されていないと判定した場合、当該条件または動作に応じた前記既定テストコードを前記既定テストコード記憶部から読み出し、読み出した前記ユーザテストコードまたは前記既定テストコードに基づいてテストコードを生成するステップと、
を備えることを特徴とするテストコード生成方法。 A decision table storage unit storing a decision table including a plurality of test cases in which conditions in processing of a software program to be tested and operations corresponding to the conditions are associated; and the conditions or the operations A test comprising a default test code storage unit in which a corresponding default test code is stored in advance, and a user test code storage unit in which a user test code input from the user and corresponding to the condition or the operation is stored A test code generation method for a code generation device, comprising:
Receiving an input of the user test code, and storing the input user test code in the user test code storage unit;
For each condition or operation, determining whether the user test code corresponding to the condition or operation is stored in the user test code storage unit;
When it is determined that the user test code corresponding to the condition or operation is stored in the user test code storage unit, the user test code corresponding to the condition or operation is read from the user test code storage unit, When it is determined that the user test code corresponding to the condition or operation is not stored in the user test code storage unit, the default test code corresponding to the condition or operation is read from the default test code storage unit and read Generating a test code based on the user test code or the default test code;
A test code generation method comprising:
前記ユーザテストコードの入力を受け付け、入力されたユーザテストコードを前記ユーザテストコード記憶部に記憶させるステップと、
前記条件または前記動作毎に、当該条件または動作に対応する前記ユーザテストコードが前記ユーザテストコード記憶部に記憶されているか否かを判定するステップと、
前記条件または動作に対応する前記ユーザテストコードが前記ユーザテストコード記憶部に記憶されていると判定した場合、当該条件または動作に応じた前記ユーザテストコードを前記ユーザテストコード記憶部から読み出し、前記条件または動作に対応する前記ユーザテストコードが前記ユーザテストコード記憶部に記憶されていないと判定した場合、当該条件または動作に応じた前記既定テストコードを前記既定テストコード記憶部から読み出し、読み出した前記ユーザテストコードまたは前記既定テストコードに基づいてテストコードを生成するステップと、
を実行させるテストコード生成プログラム。 A decision table storage unit storing a decision table including a plurality of test cases in which conditions in processing of a software program to be tested and operations corresponding to the conditions are associated; and the conditions or the operations A test comprising a default test code storage unit in which a corresponding default test code is stored in advance, and a user test code storage unit in which a user test code input from the user and corresponding to the condition or the operation is stored In the computer of the code generator,
Receiving an input of the user test code, and storing the input user test code in the user test code storage unit;
For each condition or operation, determining whether the user test code corresponding to the condition or operation is stored in the user test code storage unit;
When it is determined that the user test code corresponding to the condition or operation is stored in the user test code storage unit, the user test code corresponding to the condition or operation is read from the user test code storage unit, When it is determined that the user test code corresponding to the condition or operation is not stored in the user test code storage unit, the default test code corresponding to the condition or operation is read from the default test code storage unit and read Generating a test code based on the user test code or the default test code;
Test code generation program that executes
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2012005137A JP5758311B2 (en) | 2012-01-13 | 2012-01-13 | Test code generation device, test code generation method, test code generation program |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2012005137A JP5758311B2 (en) | 2012-01-13 | 2012-01-13 | Test code generation device, test code generation method, test code generation program |
Publications (2)
Publication Number | Publication Date |
---|---|
JP2013145443A true JP2013145443A (en) | 2013-07-25 |
JP5758311B2 JP5758311B2 (en) | 2015-08-05 |
Family
ID=49041218
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2012005137A Active JP5758311B2 (en) | 2012-01-13 | 2012-01-13 | Test code generation device, test code generation method, test code generation program |
Country Status (1)
Country | Link |
---|---|
JP (1) | JP5758311B2 (en) |
Cited By (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP2016143074A (en) * | 2015-01-29 | 2016-08-08 | 東芝ソリューション株式会社 | Verification apparatus, verification method, and program |
JP2020181509A (en) * | 2019-04-26 | 2020-11-05 | 日本電気株式会社 | Test code generation device, test code generation method, and program |
CN116779020A (en) * | 2023-08-28 | 2023-09-19 | 合肥康芯威存储技术有限公司 | Memory, testing method, testing device and medium |
-
2012
- 2012-01-13 JP JP2012005137A patent/JP5758311B2/en active Active
Cited By (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP2016143074A (en) * | 2015-01-29 | 2016-08-08 | 東芝ソリューション株式会社 | Verification apparatus, verification method, and program |
JP2020181509A (en) * | 2019-04-26 | 2020-11-05 | 日本電気株式会社 | Test code generation device, test code generation method, and program |
JP7279497B2 (en) | 2019-04-26 | 2023-05-23 | 日本電気株式会社 | TEST CODE GENERATOR, TEST CODE GENERATION METHOD AND PROGRAM |
CN116779020A (en) * | 2023-08-28 | 2023-09-19 | 合肥康芯威存储技术有限公司 | Memory, testing method, testing device and medium |
CN116779020B (en) * | 2023-08-28 | 2023-11-07 | 合肥康芯威存储技术有限公司 | Memory, testing method, testing device and medium |
Also Published As
Publication number | Publication date |
---|---|
JP5758311B2 (en) | 2015-08-05 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN108762743B (en) | Data table operation code generation method and device | |
Bisht | Robot framework test automation | |
US20140068559A1 (en) | Annotation-based infrastructure for automatically generating "predictable" ids for visual components in a web-application | |
CN108595187A (en) | Method, device and the storage medium of Android installation kit integrated software development kit | |
US20070038993A1 (en) | Method of identifying and checking software installation requirements | |
JP6440895B2 (en) | Software analysis apparatus and software analysis method | |
JP5845888B2 (en) | Software correction apparatus, software correction system, software correction method, and software correction program | |
JP5758311B2 (en) | Test code generation device, test code generation method, test code generation program | |
JP6866270B2 (en) | SQL statement extraction device, SQL statement extraction method and program | |
Lopez | Learning Php 7 | |
JP6231260B2 (en) | Screen control system, screen control program, screen creation support program, and screen control method | |
Scott et al. | JavaScript Cookbook | |
JP7247593B2 (en) | Generation device, software robot system, generation method and generation program | |
JP5900212B2 (en) | Test data generation apparatus, program, and method | |
JP6797038B2 (en) | Software material selection support device and software material selection support program | |
JP4983027B2 (en) | Check program and check method | |
JP6062735B2 (en) | Software development support device, software development support method, software development support program | |
JP2016143106A (en) | Business influence portion extraction method based on business variation and business influence portion extraction device | |
JP4564526B2 (en) | Information creation support device and program | |
JP7541227B2 (en) | Information processing device, information processing system, control method, program, and recording medium | |
WO2023026409A1 (en) | Information processing device, program, and information processing method | |
JP6937589B2 (en) | License management device, license management method, and program | |
JP2018121245A (en) | Communication apparatus, communication specification difference extraction method, and communication specification difference extraction program | |
Hunt | Scala Testing | |
JP4590907B2 (en) | Software development support device and software development support program |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
RD02 | Notification of acceptance of power of attorney |
Free format text: JAPANESE INTERMEDIATE CODE: A7422 Effective date: 20130516 |
|
RD04 | Notification of resignation of power of attorney |
Free format text: JAPANESE INTERMEDIATE CODE: A7424 Effective date: 20130816 |
|
A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20140827 |
|
A977 | Report on retrieval |
Free format text: JAPANESE INTERMEDIATE CODE: A971007 Effective date: 20150428 |
|
TRDD | Decision of grant or rejection written | ||
A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 Effective date: 20150507 |
|
A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20150603 |
|
R150 | Certificate of patent or registration of utility model |
Ref document number: 5758311 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R150 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
S533 | Written request for registration of change of name |
Free format text: JAPANESE INTERMEDIATE CODE: R313533 |
|
R350 | Written notification of registration of transfer |
Free format text: JAPANESE INTERMEDIATE CODE: R350 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |