using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace StateTransitionTestCreator
{
public partial class Roadmap : Form
{
public Roadmap()
{
InitializeComponent();
StartPosition = FormStartPosition.CenterParent;
labelRoadMap.Text = "\nFeatures planned for next releases:\n\n";
labelRoadMap.Text += "- Indicate identical states\n";
labelRoadMap.Text += "- Indicate Identical events\n";
labelRoadMap.Text += "- Indicate Identical name for state and event\n";
labelRoadMap.Text += "- Selectable output in HTML (descriptions on/off)\n";
labelRoadMap.Text += "- Check on deadlock\n";
labelRoadMap.Text += "- Check initial state is used only once\n";
labelRoadMap.Text += "- Indicate coverage of transitions by testcases\n";
labelRoadMap.Text += "- Add state -> add transition beginning from this state\n";
labelRoadMap.Text += "- Colour indicaton of selected item\n";
labelRoadMap.Text += "- Selectable caption testcase, format TC#, ABC, 123\n";
labelRoadMap.Text += "- Move items up/down inside state/event/transition table\n";
labelRoadMap.Text += "- Delete items in state/event/transition tables\n";
labelRoadMap.Text += "- Insert items in state/event/transition tables\n";
labelRoadMap.Text += "\n";
}
}
}