aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/test/java/com/yahoo/container/plugin/mojo/GenerateSourcesMojoTest.java
blob: 3b75d9dcb7d04156cf645d799e32cc0b079bfa38 (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
// Copyright Yahoo. 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 Simon Thoresen Hult
 */
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);
    }

}