aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/test/java/com/yahoo/text/BooleanParserTestCase.java
blob: cbdfe92132ff367d37b0876c292d58d2af60d5be (plain) (blame)
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 Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.text;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import org.junit.Test;

/**
 * Control argument checking in BooleanParser.
 *
 * @author <a href="mailto:steinar@yahoo-inc.com">Steinar Knutsen</a>
 */
public class BooleanParserTestCase {

    @Test
    public final void testParseBoolean() {
        boolean gotException = false;
        try {
            BooleanParser.parseBoolean(null);
        } catch (final NullPointerException e) {
            gotException = true;
        }
        assertTrue(gotException);
        gotException = false;
        try {
            BooleanParser.parseBoolean("nalle");
        } catch (final IllegalArgumentException e) {
            gotException = true;
        }
        assertTrue(BooleanParser.parseBoolean("true"));
        assertFalse(BooleanParser.parseBoolean("false"));
    }

}