--------->>> [] wichtig!


// ----------------------------------------------------------------------------
//  Description      : Command line parsing tests tests.
// ----------------------------------------------------------------------------
//  (c) Copyright 1998 by iXiONmedia, all rights reserved.
// ----------------------------------------------------------------------------



#include <iostream.h>
#include <fstream.h>
#include <ixlib_textfile.hh>
#include "test.hh"




BEGIN_TEST
  ifstream input("src.txt");
  ofstream output("dst.txt");
  xTextFile textfile;
  
  input >> textfile;
  output << textfile;
END_TEST

