File: ArgsTest.java

package info (click to toggle)
mkgmap-splitter 0.0.0%2Bsvn592-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,276 kB
  • sloc: java: 13,186; xml: 1,674; sh: 35; makefile: 17
file content (35 lines) | stat: -rw-r--r-- 891 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * Copyright (C) 2016
 * 
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 * 
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 * 
 * 
 * Author: Steve Ratcliffe, Gerd Petermann
 * Create date: 2016-12-28
 */
package func;

import org.junit.Test;

import func.lib.Outputs;
import func.lib.TestUtils;

/**
 * A basic check of various arguments that can be passed in.
 *
 * @author Gerd Petermann
 */
public class ArgsTest extends Base {
	@Test
	public void testHelp() {
		Outputs outputs = TestUtils.run("--help");
		outputs.checkNoError();
	}
}