summaryrefslogtreecommitdiff
path: root/test/libapt/commandline_test.cc
blob: a37fb022023392955a12d428e21c1fac98565498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <apt-pkg/cmndline.h>

#include "assert.h"

int main()
{
   CommandLine::Args Args[] = {
      { 't', 0, "Test::Worked", 0 },
      { 'z', "zero", "Test::Zero", 0 },
      {0,0,0,0}
   };

   CommandLine CmdL(Args,_config);
   char const * argv[] = { "test", "--zero", "-t" };
   CmdL.Parse(3 , argv);

   equals(true, _config->FindB("Test::Worked", false));
   equals(true, _config->FindB("Test::Zero", false));

   return 0;
}