ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/Configuration/test/test_ToolDoc.pm
Revision: 1.1
Committed: Fri Jan 14 18:57:56 2000 UTC (25 years, 4 months ago) by williamc
Content type: text/plain
Branch: MAIN
CVS Tags: ProtoEnd
Log Message:
Basic checking initiated - no autochecking

File Contents

# Content
1 #
2 # Tool test suite
3 #
4
5 package Configuration::test::test_ToolDoc;
6 require 5.001;
7 use ActiveDoc::ActiveDoc;
8 use ActiveDoc::ActiveConfig;
9 use Configuration::ConfigureStore;
10 use Configuration::ToolDoc;
11 use Configuration::test::ToolDocTester;
12
13 @ISA = ("TestClass"); #methods both from the test class
14
15 sub init {
16 my $self=shift;
17 $self->{testfile}=$self->datadir()."/ToolDoc";
18 $self->{Configuration}=ActiveDoc::ActiveConfig->new($self->temparea());
19 }
20
21 sub test {
22 my $self=shift;
23 $self->newtest("Initiation test");
24 $self->newobject($self->{Configuration});
25 $self->testinterface("url","file:".$self->{testfile});
26 $self->newtest("setup Tool testing");
27 $self->testinterface("setuptool","testtool", "version1");
28
29 }