//////////////////////////////////////////////////////////////////////////////
// CTA++, C++ Test Aider/Visual Studio Integration v2.0 //
// //
// GENERATED TEST DATA FILE //
// //
// Copyright (c) [generated parts] 2003-2004 Testwell Oy //
//////////////////////////////////////////////////////////////////////////////
//
// CTA/VSI: File created: Jan 22 2004 12:01:10
// CTA/VSI: - for test bed project: vsList
// CTA/VSI: - into directory: E:\devel\cta302\examples\vsList\
// CTA/VSI: Last CTA/VSI update: Jan 22 2004 12:01:10
// Last user update: <date> (when edit, you may wish to maintain this)
//
// Here you may wish to insert version control hooks, like
// $RCSfile$, $Revision$, $Date$, $Author$ and $Log$
//
// Note 1. Lines starting with '// CTA/VSI:' are auxiliary lines to
// CTA++/Visual Studio Integration. DO NOT EDIT THESE LINES!
// Note 2. Lines starting with '// TODO:' advises where especially you
// can and sometimes must insert test code. You can edit these freely.
//////////////////////////////////////////////////////////////////////////////
//
// Short introduction to CTA++ data files (edit away, if not needed).
// It might be like...
// #include "myheader1.h" // for seeing its #define and enum symbols...
// #define HUNDRED 100 // locally defined symbolic (integral) value
// #define BITMASK 0xffff0777
// enum {Mon, Tue, Wed, Thu, Fri} // define some symbolic constants to 0 ... 4
//
// testdata "ID" { // "ID@filename" used in test case registration...
// (1, 4, 5, true),
// (1, 4, HUNDRED, false),
// ...
// }
//
// TESTDATA "ID2" {
// (Mon, "26.2.2002"),
// (Tue, "27.2.2002"),
// (Tue, "27.02.2002")
// }
//
// TODO: Edit the actual data file contents below
//
// Test-data file for testing of class 'List'
//
// ----------------------------------------------------------------------
// Let's define some symbolic constants
// ----------------------------------------------------------------------
enum { ZERO, ONE, TWO, THREE, FOUR, FIVE, SIX }
// ----------------------------------------------------------------------
// This is a data section associated to the test-case function
// 'CTA_test_case_2' in CTA_vsList_drv.cpp;
// three (3) actual test cases are composed by coupling the
// separate data sets below with the test-case function.
// ----------------------------------------------------------------------
testdata "2" {
(ONE, 1, 2, SIX, -234789, 42, 64),
(TWO, 18, 2, FIVE, 344, 12, 32, THREE, 1, 2, FOUR, -234789, 42, 64),
(FOUR, 1, 2, ZERO, -234789, 42, 16)
}
// ----------------------------------------------------------------------
// In the data section below there is only a single data set,
// consisting of 17 string literals
// ----------------------------------------------------------------------
testdata "3" {
("a long time ago", "came a man on a track",
"walking thirty miles", "with a sack on his back",
"he put down his load", "where he thought it was the best",
"he made a home in the wilderness",
"he built a cabin", "and a winter store",
"he ploughed up the ground", "by a cold lake shore",
"and other travellers", "came walking down the track",
"they never went further", "they never went back",
"and the dirty old track", "was the telegraph road")
}
// CTA/VSI: Define test data above
//
// EOF