summaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/test/java/com/yahoo/container/plugin/mojo/GenerateSourcesMojoTest.java
blob: 119100d9a5e36eff0bc0f52d8fb9bff13f7531d7 (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.plugin.mojo;

import org.apache.maven.plugin.MojoExecutionException;
import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assume.assumeNotNull;

/**
 * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen Hult</a>
 */
public class GenerateSourcesMojoTest {

    @Test
    public void requireThatDefaultConfigGenVersionIsLoadedFromBuildProperties() throws MojoExecutionException {
        String expected = System.getProperty("expectedDefaultConfigGenVersion");
        System.out.println("expectedDefaultConfigGenVersion = " + expected);
        assumeNotNull(expected);

        String actual = GenerateSourcesMojo.loadDefaultConfigGenVersion();
        System.out.println("defaultConfigGenVersion = " + actual);
        assertEquals(expected, actual);
    }
}