예제 #1
0
        static void Main(string[] args)
        {
            var path    = Path.Combine(AppPath.ApplicationPath, "Thumbs");
            var samples = SamplesList.LoadSamplesList();

            foreach (var sample in samples)
            {
                runSample(path, sample);
            }
            Process.Start(path);
        }
예제 #2
0
 private void setupItemsData()
 {
     DoStartTests   = new DelegateCommand <string>(doStartTests, canDoStartTests);
     DoOpenInVs     = new DelegateCommand <string>(doOpenInVs);
     BrowserGuiData = new BrowserGui {
         IntegrationTests = new TestResultItems()
     };
     BrowserGuiData.PropertyChanged += this.browserGuiDataPropertyChanged;
     samplesListInternal             = SamplesList.LoadSamplesList();
     BrowserGuiData.SamplesCount     = samplesListInternal.Count;
     SamplesDataView = CollectionViewSource.GetDefaultView(samplesListInternal);
     SamplesList.WarmupTheSystem(samplesListInternal);
 }