aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/java/jopt-simple/src/test/java/joptsimple/NoArgumentOptionSpecTest.java
diff options
context:
space:
mode:
authorGravatar Philipp Wollermann <philwo@google.com>2017-09-03 10:51:44 +0200
committerGravatar Philipp Wollermann <philwo@google.com>2017-09-04 11:23:17 +0200
commita6d3f52fef62955b6b25a3832440f041a93bc5e2 (patch)
treec6d20779e7cd3558c51bf986fb15a1d1e4bfdf77 /third_party/java/jopt-simple/src/test/java/joptsimple/NoArgumentOptionSpecTest.java
parent663df9d96f10a2dd0fa8a85b4aac39cd2cc368fb (diff)
Remove third_party/java/jopt-simple/src/{site,test}.
They are unused and the tests depend on Joda Time which I'm going to remove. Also document the removal in the package's README.bazel.md. Change-Id: I7b0ee89718bfc2cffcc60a8262cf53dbf9035669
Diffstat (limited to 'third_party/java/jopt-simple/src/test/java/joptsimple/NoArgumentOptionSpecTest.java')
-rw-r--r--third_party/java/jopt-simple/src/test/java/joptsimple/NoArgumentOptionSpecTest.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/third_party/java/jopt-simple/src/test/java/joptsimple/NoArgumentOptionSpecTest.java b/third_party/java/jopt-simple/src/test/java/joptsimple/NoArgumentOptionSpecTest.java
deleted file mode 100644
index e128308c2d..0000000000
--- a/third_party/java/jopt-simple/src/test/java/joptsimple/NoArgumentOptionSpecTest.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- The MIT License
-
- Copyright (c) 2004-2015 Paul R. Holser, Jr.
-
- Permission is hereby granted, free of charge, to any person obtaining
- a copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be
- included in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-*/
-
-package joptsimple;
-
-import static java.util.Arrays.*;
-
-import org.junit.Test;
-
-import static org.infinitest.toolkit.CollectionMatchers.*;
-import static org.junit.Assert.*;
-
-/**
- * @author <a href="mailto:pholser@alumni.rice.edu">Paul Holser</a>
- */
-public class NoArgumentOptionSpecTest extends AbstractOptionSpecFixture {
- @Override
- protected NoArgumentOptionSpec createEqualOptionSpecInstance() {
- return new NoArgumentOptionSpec( "a" );
- }
-
- @Override
- protected NoArgumentOptionSpec createNotEqualOptionSpecInstance() {
- return new NoArgumentOptionSpec( "b" );
- }
-
- @Test
- public void optionsContents() {
- assertThat( createNotEqualOptionSpecInstance().options(), hasSameContentsAs( asList( "b" ) ) );
- }
-}