001package com.ganteater.ae.processor;
002
003import static org.junit.Assert.*;
004
005import org.junit.Test;
006
007public class SpecialCommandsTest {
008
009        @Test
010        public void constants_shouldHaveExpectedValues() {
011                // Arrange / Act / Assert
012                assertEquals("Logger", SpecialCommands.LOGGER);
013                assertEquals("Else", SpecialCommands.ELSE);
014                assertEquals("Break", SpecialCommands.BREAK);
015                assertEquals("Stop", SpecialCommands.STOP);
016                assertEquals("Finally", SpecialCommands.FINALLY);
017                assertEquals("Startup", SpecialCommands.STARTUP);
018        }
019}