internal FakeRoot(TestCaseDescription _enclosing, NNStorage.NameNodeDirType type)
 {
     this._enclosing = _enclosing;
     this.type       = type;
     this.files      = Lists.NewArrayList();
 }
Exemple #2
0
        private void HandleDoubleClick(object sender, MouseButtonEventArgs e)
        {
            TestCaseDescription itemClicked = (TestCaseDescription)((ListViewItem)sender).Content;

            Process.Start(itemClicked.Url);
        }