Show/Hide Toolbars

Unit Test Framework Manual

Navigation: » No topics above this level «

Glossary

Scroll Prev Top Next More

 

continuous integration

The process of building and testing software whenever a change is made to the code.  The testing usually makes use of automated test.

 

CSV

Comma Separated Values, a file format that can be imported into Microsoft Excel.  The format is textual with values separated by commas.

 

BDD

Behavior Driven Development,  an agile development practice using test-driven development, but working from the outside in by starting with goals and requirements.  Developers work with subject matter experts and other stakeholders to translate requirements into tests.  The tests are named to closely match features identified by stakeholders.

 

error

A test function is considered to have ended in an error if the system under test throws an exception.

 

failure

A test function is considered to have failed if one of the assertions in the test function fails.

 

FIT

Framework for Integrated Tests.

 

Gosu

A scripting language developed by Guidewire Software, Inc. and used in configuring Guidewire products. Gosu is based on the ECMA-262 scripting language.

 

Guidewire Software Inc.

A United States corporation that produces insurance software including ClaimCenter, PolicyCenter, BillingCenter, and ContactManager.

 

GUnit

A JUnit-like framework in Guidewire Studio.

 

Java

An object-oriented computer programming language.

 

JUnit

JUnit is a unit testing framework for the Java programming language. JUnit has been important in the development of test-driven development, and is one of a family of unit testing frameworks collectively known as xUnit.  Kent Beck, Erich Gamma, and David Saff developed JUnit.

 

package

In the Gosu language, a grouping of Gosu classes.

 

POI

An open source Java library for reading Excel files.

 

QA

Quality Assurance

 

QuickStart

An execution environment for running Guidewire products using the H2 database and the Jetty servlet container.  This environment is the one provided when a Guidewire product is initially installed.

 

regression testing

Tests performed after changes made to software to check that the changes have not broken existing features.  Since regression tests are typically run many times, automated regression tests offer many advantages.

 

RunTest

A Java command line program that allows execution of test cases without using Studio.

 

smoke testing

Smoke testing is the execution of a suite of tests to confirm that the installation of the system is working correctly.  Smoke tests typically are a small subset of the total set of test cases.  However, often a whole set of automated tests can be run.

 

Studio

A software tool developed by Guidewire for customizing Guidewire products and writing Gosu code.

 

success

A test function is considered to have succeeded if neither the code under test throws an exception nor an assertion in the test function fails.

 

TDD

Test-Driven Development, an approach to programming developed by Kent Beck.  Using this approach, the developer first writes one or more automated tests that exercises a feature.  Second, the developer writes enough code so that the feature passes the automated tests.  Third, the developer cleans up the code, while continuing to run tests to insure they pass.

 

URL

Uniform Resource Locator, an identifier for a Web page or Web Service.

 

Web Service

A capability that allows a client to execute an operation on a server by sending an XML message to the server using the HTTP protocol.

 

WS-I

Web Services Interoperability Organization, an organization that promulgates standards for Web Services.  The abbreviation also refers to standards from this organization.

 

ZIP

A file format used to group and compress other files.