summaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/test/java/com/yahoo/container/plugin/mojo/GenerateSourcesMojoTest.java
blob: 4edc9c3712d0e9bdd356f14e6779bed536296a7f (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.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assumptions.assumeTrue;

/**
 * @author Simon Thoresen Hult
 */
public class GenerateSourcesMojoTest {

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

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

}