/* * Copyright 2017 Nokia Solutions and Networks * Licensed under the Apache License, Version 2.0, * see license.txt file for details. */ package org.rf.ide.core.execution.server.response; import static org.assertj.core.api.Assertions.assertThat; import org.junit.Test; public class StartExecutionTest { @Test public void properMessageIsConstructed_forStartExecutionMessage() { assertThat(new StartExecution().toMessage()).isEqualTo("{\"do_start\":[]}"); } }