/** Simple testing. */ @Test public void simple() { CommandScript script = new CommandScript( "testing", set("blk1", "blk2"), "profile", "module", Arrays.asList("cmd1", "cmd2"), map("ASAKUSA_HOME", folder.getRoot().getAbsolutePath())); assertThat(script.getKind(), is(ExecutionScript.Kind.COMMAND)); assertThat(script.getId(), is("testing")); assertThat(script.getBlockerIds(), is(set("blk1", "blk2"))); assertThat(script.getProfileName(), is("profile")); assertThat(script.getModuleName(), is("module")); assertThat(script.getCommandLineTokens(), is(Arrays.asList("cmd1", "cmd2"))); assertThat(script.getEnvironmentVariables().size(), is(1)); assertThat( script.getEnvironmentVariables().get("ASAKUSA_HOME"), is(folder.getRoot().getAbsolutePath())); }