summaryrefslogtreecommitdiffstats
path: root/controller-api/src/test/java/com/yahoo/vespa/hosted/controller/api/integration/billing/BillStatusTest.java
blob: 9647a11a4baabeb8617795b38986fd2a37bbef90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yahoo.vespa.hosted.controller.api.integration.billing;

import org.junit.jupiter.api.Test;

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

/**
 * @author gjoranv
 */
public class BillStatusTest {

    @Test
    void legacy_states_are_converted() {
        assertEquals(BillStatus.OPEN, BillStatus.from("ISSUED"));
        assertEquals(BillStatus.OPEN, BillStatus.from("EXPORTED"));
    }

}