Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « NUnit « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66a525ff57bd209d2fac7efa38957253729fa619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
2009-10-29  Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/TestPad.cs:
	* Gui/TestResultsPad.cs: Fix warnings.

2009-10-29  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.NUnit.csproj: Reference the mono-cairo package.

2009-10-29  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/generated.cs: Flush.

2009-10-16  Mike Krüger  <mkrueger@novell.com>

	* Gui/CircleImage.cs: Handled icon loading error.

2009-10-09  Mike Krüger  <mkrueger@novell.com>

	* md1format.xml: Track namespace changes.

2009-10-07  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelopNUnit.addin.xml: Bump MD version.

2009-10-02  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/NUnitService.cs: After a build operation, and
	  before running the tests, ensure that the tests are up to
	  date by calling Refresh.

	* Services/UnitTest.cs: Added refresh operation. Fire test
	  events in the gui thread.

	* Services/UnitTestGroup.cs:
	* Services/NUnitProjectTestSuite.cs:
	* Services/NUnitAssemblyTestSuite.cs: Implemented the Refresh
	  operation. This operation updates any test that needs to be
	  updated. It is an async operation. All this fixes bug
	  #540257 - Unit test pad not updated correctly when "run
	  tests" implies a build operation.

2009-09-17  Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/TestPad.cs: Add support for custom execution modes.

2009-09-09  Christian Hergert  <chris@dronelabs.com>

	* Services/NUnitService.cs: Make dialog transient for the
	  root window.

2009-08-28  Mike Krüger  <mkrueger@novell.com>

	* templates/NUnitTestClass.xft.xml: Fixed "Bug 479196 - "add
	  test fixture" adds refs to nunit.core and nunit.framework
	  from "Package"".

2009-08-26  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/gui.stetic: Update gtk# dependency.

2009-08-26  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.NUnit.csproj: Updated dependencies. We now
	  depend on gtk# 2.12.8, Mono 2.4, and Mono.Addins 0.4.

2009-08-06  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* Gui/TestChart.cs:
	* MonoDevelop.NUnit.csproj: Track api changes in the chart
	  widget.

2009-07-31  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/NUnitAssemblyTestSuite.cs: Track api changes.

2009-06-23  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/NUnitService.cs:
	* Gui/NUnitAssemblyGroupNodeBuilder.cs:
	* Gui/NUnitAssemblyGroupConfigurationNodeBuilder.cs: Use the
	  new DesktopService instead of PlatformService.

2009-06-18  Lluis Sanchez Gual  <lluis@novell.com>

	* Services\ExternalTestRunner.cs:
	* Services\NUnitAssemblyTestSuite.cs: In some cases MS.NET
	  can't properly resolve assemblies even if they are already
	  loaded. For example, when deserializing objects from
	  remoting. Added a handler for AssemblyResolve that handle
	  this case.

2009-05-19  Lluis Sanchez Gual  <lluis@novell.com>

	* Project\NUnitAssemblyGroupFileFormat.cs: Use the new
	  FilePath class for handling file and directory paths.

2009-05-06  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/NUnitTestCase.cs:
	* Services/NUnitTestSuite.cs: Implement OnCanRun for NUnit
	  tests and test suites.

	* Services/UnitTestGroup.cs: A test suite can be run using a
	  specific mode if all child tests can.

	* Gui/TestPad.cs: Improve support for using a custom execution
	  mode.

2009-05-04  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelopNUnit.addin.xml: Added Run Test With submenu,
	  with support for all registered modes.

	* Gui/TestPad.cs:
	* Services/UnitTest.cs:
	* Services/TestContext.cs: Track api changes.

2009-04-24  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelopNUnit.addin.xml: Changed copyright tag.

2009-04-24  Mike Krüger  <mkrueger@novell.com>

	* AssemblyInfo.cs: Changed assembly info.

2009-04-20  Mike Krüger  <mkrueger@novell.com>

	* Gui/TestResultsPad.cs: Renamed PixbufService to
	  ImageService.

2009-04-20  Mike Krüger  <mkrueger@novell.com>

	* Gui/TestResultsPad.cs: Track API changes.

2009-04-17  Mike Kestner  <mkestner@novell.com>

	* MonoDevelop.NUnit.csproj: don't require specific
	gtk-sharp version.

2009-04-17  Mike Krüger  <mkrueger@novell.com>

	* Gui/NUnitOptionsPanel.cs:
	* Services/NUnitService.cs:
	* MonoDevelopNUnit.addin.xml:
	* Gui/UnitTestOptionsDialog.cs: translated the option panels
	  to the new option structure.

2009-04-15  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelopNUnit.addin.xml: Bump MD version.

2009-03-20  Michael Hutchinson  <mhutchinson@novell.com>

	* templates/NUnitProject.xpt.xml: Reference the version of
	  NUnit that we ship with MD.

2009-03-05  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/NUnitAssemblyTestSuite.cs: Improved error message.

2009-03-04  Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/TestPad.cs:
	* Services/UnitTest.cs:
	* Services/TestContext.cs:
	* Services/NUnitService.cs:
	* Services/NUnitAssemblyTestSuite.cs:
	* Services/NUnitProjectServiceExtension.cs: Changed the way
	  execution handlers work. We are not using platform ids
	  anymore. Instead, we use command strings when looking for
	  execution handlers. IExecutionHandlerFactory has been
	  removed and now everything is handled by IExecutionHandler,
	  which has a new CanExecute method. This model is more simple
	  and more generic.

2009-02-27  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/NUnitProjectTestSuite.cs: Check for nunit.core as
	  well as nunit.framework when looking for nunit test
	  projects. Should fix bug #477523.

2009-02-23  Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/TestPad.cs: Track merge of the project pad context menu.

2009-02-19  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/NUnitAssemblyTestSuite.cs: Modify the test
	  collection in the gui thread, to avoid concurrent access.
	  Fixes bug #469131 - Random IOE exception.

2009-02-17  Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/TestPad.cs:
	* Services/UnitTest.cs:
	* Gui/TestResultsPad.cs:
	* Services/TestContext.cs:
	* Services/NUnitService.cs:
	* Commands/NUnitCommands.cs:
	* MonoDevelopNUnit.addin.xml:
	* Services/ExternalTestRunner.cs:
	* Services/NUnitAssemblyTestSuite.cs:
	* Services/NUnitProjectServiceExtension.cs: Added support for
	  running unit tests using a special execution mode (for
	  example, using the debugger).

2009-02-08  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelopNUnit.addin.xml: Don't partially assembly-qualify
	  type name, as it makes .NET unhappy, and doesn't seem to be
	  necessary for Mono.

2009-02-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.NUnit.mds:
	* MonoDevelop.NUnit.mdp:
	* MonoDevelop.NUnit.csproj: Migrated to MSBuild file format.

2009-02-05  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelopNUnit.addin.xml: Don't register the nunit package
	  if mono-nunit is installed and has the same version.

	* gtk-gui/generated.cs: Flush.

2009-02-05  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/UnitTestResult.cs: Getting the failure location
	  doesn't work very well. Disable for now.

2009-02-03  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelopNUnit.addin.xml: Bump MD version.

2009-02-03  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.NUnit.mdp: Flush.

2009-01-26  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.NUnit.mds:
	* MonoDevelop.NUnit.mdp:
	* NUnitRunner/NUnitRunner.mdp: Flush project format changes.

2009-01-20  Lluis Sanchez Gual  <lluis@novell.com>

	* NUnitRunner/NUnitTestRunner.cs: Make sure that only the provided test
	suite is executed.

2009-01-19  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/ExternalTestRunner.cs: Add a default test result message when
	none is provided.

	* Gui/TestResultsPad.cs:
	* Gui/TestNodeBuilder.cs:
	* Services/UnitTestResult.cs: When jumping to the test source code, if
	the test failed, jump to the line of the failure.

	* templates/NUnitTestClass.xft.xml: Add references to NUnit when adding
	a test fixture to a project.

2009-01-19  Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/TestPad.cs:
	* Services/NUnitService.cs:
	* Commands/NUnitCommands.cs:
	* MonoDevelopNUnit.addin.xml:
	* Services/UnitTestCollection.cs: Added command for running the tests.

	* Makefile.am:
	* MonoDevelop.NUnit.mdp:
	* Services/NUnitProjectServiceExtension.cs: When the project is a nunit
	library and there are no custom execution commands, run the tests
	when clicking on the Run option.

2009-01-16  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.NUnit.mds: Added new NUnitRunner project.

2009-01-16  Lluis Sanchez Gual  <lluis@novell.com>

	* lib/nunit.util.dll:
	* lib/nunit.core.dll:
	* lib/nunit.framework.dll:
	* MonoDevelopNUnit.addin.xml:
	* lib/nunit.core.interfaces.dll: Update to latest NUnit.

	* NUnitRunner:
	* Services/UnitTest.cs:
	* NUnitRunner/Makefile.am:
	* Services/NUnitTestCase.cs:
	* Services/NUnitTestSuite.cs:
	* Services/UnitTestResult.cs:
	* NUnitRunner/NUnitRunner.mdp:
	* Services/ExternalTestRunner.cs:
	* NUnitRunner/NUnitTestRunner.cs:
	* Services/NUnitProjectTestSuite.cs:
	* Services/NUnitAssemblyTestSuite.cs: Changed the way tests are run.
	Tests are now run in a separate appdomain to avoid conflicts of the
	tested assembly with MD.

	* Gui/TestResultsPad.cs: Ignore NUnit stack frames when looking for the
	source of a test failure. Fix some issues with the output pad.

	* Makefile.am:
	* MonoDevelop.NUnit.mdp: Updated.

2009-01-09  Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/TestPad.cs:
	* Gui/TestResultsPad.cs: Make sure the tree view is the first widget to
	be focused when presenting the pad.

2009-01-07  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/ExternalTestRunner.cs: Fix bug #461415 - NUnit addin's path
	handling does not account for inherited tests. Patch by Brian
	Anderson.

2008-12-12  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.NUnit.mdp: All projects now require fx 3.5.

2008-12-11  Lluis Sanchez Gual  <lluis@novell.com>

	* Project/NUnitAssemblyGroupFileFormat.cs: Track API changes.

2008-12-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.NUnit.mdp: Don't require a specific version of
	Mono.Addins.

2008-12-04  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/NUnitService.cs: Track api changes.

2008-12-02  Michael Hutchinson  <mhutchinson@novell.com>

	* AssemblyInfo.cs: Add AssemblyInfo.cs files that are autogenerated from
	the addin manifests.

2008-11-25  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui:
	* gtk-gui/gui.stetic:
	* gtk-gui/generated.cs: Add missing files.

2008-11-25  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/ExternalTestRunner.cs: Fix bug #440929 - Exception when
	running single test fixture that contains no tests.

	* MonoDevelop.NUnit.mdp: Added stetic file.

	* Makefile.am: Fix support for makefile parallel build.

2008-11-06  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am: Fix build dependencies.

2008-11-05  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelopNUnit.addin.xml: Bump MD version.

2008-10-02  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelopNUnit.addin.xml, Services/WorkspaceTestGroup.cs,
	  Services/NUnitService.cs, Services/SolutionFolderTestGroup.cs,
	  Gui/TestResultsPad.cs, Gui/TestPad.cs: Use a simple lazy singleton
	  instead of an IService.

2008-09-12  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp: Updated generated code.

2008-09-12  Lluis Sanchez Gual <lluis@novell.com> 

	* Services/NUnitProjectTestSuite.cs: Track api changes.

2008-09-04  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/NUnitAssemblyGroupConfigurationNodeBuilder.cs,
	  Gui/NUnitAssemblyGroupNodeBuilder.cs, Gui/TestNodeBuilder.cs,
	  Gui/TestAssemblyNodeBuilder.cs, Gui/TestPad.cs: Moved the
	  extensible tree view to its own directory.

2008-07-29  Mike Krüger <mkrueger@novell.com> 

	* Services/NUnitProjectTestSuite.cs: Translated old code to new dom.

2008-07-25  Peter Johanson <peter@peterjohanson.com> 

	* Services/ExternalTestRunner.cs: Prevent an ArgumentOutOfRange
	  exception if we are running a UnitTestGroup node.

2008-07-21  Lluis Sanchez Gual <lluis@novell.com> 

	* Project/NUnitAssemblyGroupFileFormat.cs,
	  Project/NUnitAssemblyGroupProject.cs, Project/TestAssembly.cs,
	  Services/NUnitOptions.cs, Services/UnitTest.cs: Moved serialization
	  engine to MonoDevelop.Core. Use new syntax for specifying attribute
	  scope.

2008-06-17  Lluis Sanchez Gual <lluis@novell.com> 

	* Services/NUnitAssemblyTestSuite.cs: When counting test cases, ensure
	  the test suite is fully loaded. Fixes bug #400106.
	* Gui/TestResultsPad.cs: Some protection against division by 0.

2008-06-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml: Bump MD version.

2008-05-28  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/TestResultsPad.cs: Fix bug 387453 - Buttons in NUnit Test Results
	  throw exception.

2008-05-27  Lluis Sanchez Gual <lluis@novell.com> 

	* Services/NUnitService.cs, Gui/TestPad.cs: Moved SearchTest to
	  NUnitService.
	* Gui/TestResultsPad.cs: Fixed bug 366047 - Exceptions in "Test
	  results" pad.

2008-05-23  Lluis Sanchez Gual <lluis@novell.com> 

	* Project/NUnitAssemblyGroupFileFormat.cs: Track api changes.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* Project/NUnitAssemblyGroupProject.cs: Replaced
	  ICompilerResult/DefaultCompilerResult/CompilerResults by a new
	  BuildResult class, which has owner information at error level, so
	  it is possible to know which project generated an error when
	  building a solution. Updated Task and TaskService to use the new
	  owner information.

2008-05-21  Lluis Sanchez Gual <lluis@novell.com> 

	* md1format.xml: Added missing file.

2008-05-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml, MonoDevelop.NUnit.mdp,
	  Services/WorkspaceTestGroup.cs, Services/NUnitService.cs,
	  Services/UnitTest.cs, Services/SolutionFolderTestGroup.cs,
	  Services/UnitTestGroup.cs, Services/NUnitProjectTestSuite.cs,
	  Services/SystemTestProvider.cs, Services/ITestProvider.cs,
	  Services/NUnitAssemblyTestSuite.cs,
	  Gui/NUnitAssemblyGroupConfigurationNodeBuilder.cs,
	  Gui/TestResultsPad.cs, Gui/NUnitAssemblyGroupNodeBuilder.cs,
	  Gui/TestPad.cs, Project/NUnitAssemblyGroupProject.cs,
	  Project/NUnitAssemblyGroupFileFormat.cs, Makefile.am: New project
	  model changes.

2008-02-27  Mike Krüger <mkrueger@novell.com> 

	* Services/TestProgressMonitor.cs: Refactored status bar.

2008-02-26  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml, Services/NUnitService.cs: Put back the
	  old results pad.
	* Gui/TestResultsPad.cs: When double clicking a test, jump to the exact
	  line that failed. When selecting a test, scroll the output view so
	  it shows the test's output.
	* Gui/TestPad.cs: Use a toolbar without labels.

2008-02-23  Mike Krüger <mkrueger@novell.com> 

	* Services/TestProgressMonitor.cs: Added tests finished message.

2008-02-23  Mike Krüger <mkrueger@novell.com> 

	* Gui/TestPad.cs: Fixed threading bug.

2008-02-23  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelopNUnit.addin.xml, Services/TestProgressMonitor.cs,
	  Services/NUnitService.cs, Gui/TestResultsPad.cs, Gui/TestPad.cs,
	  Gui/CircleImage.cs: Worked on nunit pad

2008-02-20  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp, Makefile.am: Fix references.
	* MonoDevelopNUnit.addin.xml, Services/NUnitService.cs: Register nunit
	  packages using the extension point, instead of doing it by conde in the
	  nunit service (since that code won't be run unless the service is
	  explicitely loaded). Fixes bug #

2008-02-20  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/NUnitAssemblyGroupNodeBuilder.cs, Gui/TestAssemblyNodeBuilder.cs:
	  Handle the delete key in TreeViewPad, so it will work event if the
	  shortcut is not defined.

2008-02-06  Mike Krüger <mkrueger@novell.com> 

	* Gui/TestPad.cs: Some changes for the new TreeViePiye

2008-02-05  Lluis Sanchez Gual <lluis@novell.com> 

	* templates/NUnitProject.xpt.xml: Fix nunit versions referenced in the
	  project.

2008-02-04  Lluis Sanchez Gual <lluis@novell.com> 

	* templates/NUnitProject.xpt.xml: Don't try to open Test.cs, since it wont
	  work for languages other than c#. Fixes bug #358359.

2008-01-25  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml: Update MD version.

2008-01-23  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/NUnitOptionsPanel.cs: Ensure we don't create subclasses of classes
	  with private fields bound by glade#. It would not work due to bug
	  355228.

2008-01-15  Michael Hutchinson <mhutchinson@novell.com> 

	* templates/NUnitTestClass.xft.xml, templates/NUnitAssemblyGroup.xpt.xml,
	  templates/NUnitProject.xpt.xml: Make template categories translatable.

2008-01-09  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/TestPad.cs: Add null check when filling data for selected node. Should
	  fix bug #350518.

2007-12-12  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml: Bump add-in versions.

2007-12-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp, Makefile.am: Directory reorganization.

2007-11-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml, Services/NUnitService.cs: Reuse the results
	  pad. Don't create it at every session. Fixes bug #338960.
	* Gui/TestResultsPad.cs: Icon and title is now set in the manifest.

2007-11-09  Michael Hutchinson <mhutchinson@novell.com> 

	* Services/NUnitService.cs, Services/XmlResultsStore.cs,
	  Services/NUnitAssemblyTestSuite.cs: Track LoggingService API changes.

2007-10-29  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml: Bump MD version.

2007-10-25  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/NUnitAssemblyGroupNodeBuilder.cs, templates/NUnitTestClass.xft.xml:
	  Use tango file icons. Removed obsolete icons.

2007-10-24  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp, Services/NUnitService.cs, Gui/nunit-overlay-32.png,
	  Gui/TestResultsPad.cs, Makefile.am,
	  templates/NUnitAssemblyGroup.xpt.xml, templates/NUnitProject.xpt.xml:
	  Updated project icons. Use the base project icon with an overlay to show
	  the type.

2007-10-23  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp: Project file names updated by change in MD path
	  functions.

2007-10-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp: Fix warning level.

2007-09-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml: Bump MD version.

2007-09-04  Michael Hutchinson <MHutchinson@novell.com>

	* Gui/UnitTestOptionsDialog.cs,
	  Gui/NUnitOptionsPanel.cs: Fix compiler warnings.

2007-08-31  Mike Krüger <mkrueger@novell.com> 

	* Gui/UnitTestOptionsDialog.cs, Gui/NUnitOptionsPanel.cs: Changes due to new
	  property infrastructure.

2007-08-09  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml: Removed the CommandService class. Everything
	  is done directly with CommandManager. Moved all extension node types to
	  MD.Components.

2007-08-09  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp, MonoDevelopNUnit.addin.xml,
	  Services/NUnitService.cs, Gui/UnitTestOptionsDialog.cs,
	  Gui/NUnitAssemblyGroupConfigurationNodeBuilder.cs,
	  Gui/TestResultsPad.cs, Gui/NUnitAssemblyGroupNodeBuilder.cs,
	  Gui/TestAssemblyNodeBuilder.cs, Gui/TestNodeBuilder.cs, Gui/TestPad.cs,
	  Makefile.am: Reorganized the extension point hierarchy. Embedded all
	  add-in manifests as resources.

2007-08-02  Lluis Sanchez Gual <lluis@novell.com> 

	* Services/NUnitService.cs,
	  Gui/NUnitAssemblyGroupConfigurationNodeBuilder.cs,
	  Gui/NUnitAssemblyGroupNodeBuilder.cs, Gui/TestNodeBuilder.cs,
	  Gui/TestPad.cs: Converted DispatchService to a static class.

2007-07-19  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp, MonoDevelopNUnit.addin.xml, Gui/nunit.png,
	  Makefile.am: Added icon for the nunit pad.

2007-07-18  Lluis Sanchez Gual <lluis@novell.com> 

	* Services/NUnitService.cs, Services/XmlResultsStore.cs,
	  Services/NUnitAssemblyTestSuite.cs: Use the log service for logging
	  errors.

2007-07-03  Mike Krüger <mkrueger@novell.com> 

	* Gui/TestResultsPad.cs: Changed a bit because of the removal of custom
	  collections in the Ide project.

2007-06-20  Lluis Sanchez Gual <lluis@novell.com> 

	* Services/NUnitService.cs: Track api changes.

2007-05-31  Lluis Sanchez Gual <lluis@novell.com> 

	* Services/NUnitService.cs: If a solution is already open when
	  initializing the nunit service, load the test tree.

2007-05-29  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/TestResultsPad.cs: Fixed some status messages. Make sure the
	  progress label does not grow beyond the available space.

2007-05-29  Lluis Sanchez Gual <lluis@novell.com> 

	* Services/NUnitService.cs: Unregister tests providers of unloaded
	  add-ins.

2007-05-21  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/TestPad.cs: Added missing null check. Fixes bug #81097.

2007-05-17  Lluis Sanchez Gual <lluis@novell.com> 

	* Gui/TestPad.cs: Fill the tree if there is some RootTest defined just
	  after the pad initialization.

2007-05-14  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp: Copy nunit dlls to target dir.
	* Services/NUnitService.cs, Gui/TestResultsPad.cs: Track api changes.

2007-05-11  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp: Copy the .addins.xml file to the output dir.

2007-05-10  Mike Krüger <mkrueger@novell.com>

	* Services/NUnitService.cs:
	Fixed bug in pad loading.
2007-05-09  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp, Makefile.am: Reference shared assemblies from
	  the correct location.

2007-05-05  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml: Restore extension deleted during the M.A
	  migration.

2007-05-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp, MonoDevelopNUnit.addin.xml,
	  Services/NUnitService.cs, Gui/UnitTestOptionsDialog.cs,
	  Makefile.am: Migration to Mono.Addins.

2007-05-03  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects/Combine.cs,
	  MonoDevelop.Projects/CombineEntryEventArgs.cs,
	  MonoDevelop.Projects.Parser/DefaultParserService.cs: Added a
	  Reloading property to the argument of the entry add/remove events
	  of Combine, which is set to true if the entry is being only
	  reloaded, not actually removed/added to the combine.

2007-04-19  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp: Updated.
	* Project/NUnitAssemblyGroupFileFormat.cs: Track api changes.

2007-03-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp: Don't local copy references.
	* Services/NUnitService.cs, Gui/TestResultsPad.cs: Added button for
	  running the tests. Fixed context menu. Don't make the TestResultPad
	  a subclass of GuiSyncObject because there are some identity issue
	  with GetHashCode and the proxy. Using TestMonitor instead.

2007-02-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml: Change add-in versions to 0.13.

2007-02-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp: Set target runtime to 2.0.

2007-02-11  Lluis Sanchez Gual <lluis@novell.com> 

	* Makefile.am: Remove nunit references, since nunit is now included in
	  the add-in.

2007-02-11  David Makovský (Yakeen) <yakeen@sannyas-on.net>

	*Makefile.am: install also nunit.framework.dll, otherwise addin will not start on some systems

2007-02-10  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp: Synchronized the MD project and the Makefile
	* MonoDevelopNUnit.addin.xml: Removed nunit dependency. Added new
	  project template.
	* Services/ExternalTestRunner.cs, Services/NUnitAssemblyTestSuite.cs:
	  Track api changes in NUnit.
	* Services/NUnitService.cs: Register the nunit package is none is
	  installed.
	* Gui/TestResultsPad.cs: Make the toolbar smaller. Added null check for
	  empty result messages when a test is ignored.
	* lib, lib/nunit.framework.dll, lib/nunit.core.dll: Bundle nunit
	  together with the add-in.
	* Makefile.am: Synchronized the MD project and the Makefile. Bundle
	  nunit together with the add-in.
	* templates/NUnitTestClass.xft.xml: Latest NUnit versions require the
	  Test attribute to be applied to test methods.
	* templates/NUnitProject.xpt.xml: New project template.

2007-02-07  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp: Updated.
	* Gui/NUnitAssemblyGroupNodeBuilder.cs: Dispose the project after
	  removing it.
	* Project/NUnitAssemblyGroupProject.cs: Track api changes.

2006-12-18  Lluis Sanchez Gual <lluis@novell.com> 

	* Project/NUnitAssemblyGroupProject.cs: Track api changes.

2006-11-16  Lluis Sanchez Gual <lluis@novell.com> 

	* Services/NUnitService.cs: Use global events to keep track of
	  reference changes (simplified the code).

2006-09-21 Lluis Sanchez Gual  <lluis@novell.com> 

	* Gui/NUnitAssemblyGroupNodeBuilder.cs:
	* MonoDevelopNUnit.addin.xml: Added delete command to the nunit
	  assembly group context menu.
	  
	* Services/NUnitProjectTestSuite.cs: Track API changes.

2006-09-07 Andrés G. Aragoneses  <knocte@gmail.com>

	* MonoDevelopNUnit.addin.xml: Improved string.

2006-09-05 Lluis Sanchez Gual  <lluis@novell.com> 

	* Services/ExternalTestRunner.cs: Make sure the MonoDevelop.Projects
	  add-in is loaded in the remote process.

2006-07-03 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.NUnit.mdp:
	* Makefile.am:
	* templates/NUnitTestClass.xft.xml: Added new file template for
	  unit tests.
	  
	* Services/UnitTest.cs: Removed DataItem attributes, since they
	  are not ignored anymore.
	* MonoDevelopNUnit.addin.xml: Updated versions.

2006-06-15 Lluis Sanchez Gual  <lluis@novell.com>

	* Services/NUnitService.cs: Use the new extension listeners to
	  read extensions.

2006-05-31 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelopNUnit.addin.xml:
	* Services/NUnitService.cs: Added an extension point for registering
	  test providers. It replaces the RegisterTestProvider api call.

2006-05-04 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelopNUnit.addin.xml: Updated versions.
	* MonoDevelop.NUnit.mdp: Updated.

2006-04-18 Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/CircleImage.cs: Added static constructor to get
	strict "beforefieldinit" semantics, so that the images
	are loaded after GTK is initialized.

2006-04-04 Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am: Reference nunit libraries using $(NUNIT_LIBS).
	  Patch by Christian Hergert.

2006-04-03 Lluis Sanchez Gual  <lluis@novell.com>

	* NUnit/Services/NUnitService.cs: Use a GUI thread safe
	  subscription to CombineOpened event.

2006-03-30 Lluis Sanchez Gual <lluis@novell.com>

	* MonoDevelop.NUnit.addin.xml: Added info about the
	  nunit dependency.

2006-03-30 Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.NUnit.addin.xml: Updated references.

2006-03-24 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.NUnit.mdp: Updated.
	* Makefile.am: Use an unified format. Patch by Matze Braun.
	* MonoDevelopNUnit.addin.xml: Updated add-in versions.

2006-03-22  Lluis Sanchez Gual  <lluis@novell.com> 

	* NUnit/MonoDevelopNUnit.addin.xml: Declared nunit.framework
	  dependency.

2005-12-22  David Makovský <yakeen@sannyas-on.net> 

	* Gui/TestResultsPad.cs:
	* Gui/NUnitOptionsPanel.cs:
	* Gui/TestNodeBuilder.cs:
	* Gui/TestPad.cs: Make some strings translatable.


2005-11-15  Lluis Sanchez Gual  <lluis@novell.com> 

	* Services/NUnitTestCase.cs:
	* Services/NUnitTestSuite.cs:
	* Services/NUnitAssemblyTestSuite.cs:
	* Services/ExternalTestRunner.cs: Properly handle the case when it's
	running a single test case.
	
	* Services/UnitTest.cs: Save the inherited store if needed.
	* Services/XmlResultsStore.cs: Reset the modified flag once the
	store is saved.
	* Gui/TestResultsPad.cs: Clear the output buffer when refreshing the
	results list.
	* MonoDevelopNUnit.addin.xml: Added dependency.

2005-10-11  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml: Fixed addin header information.
	Use "id" attribuet instead of "name" to identify addins.

2005-10-04  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelopNUnit.addin.xml: Added addin dependencies.
	* Gui/UnitTestOptionsDialog.cs: Use the new addin API.

2005-09-22  Lluis Sanchez Gual  <lluis@novell.com> 

	* Services/NUnitService.cs:
	* Services/CombineTestGroup.cs:
	* Services/NUnitProjectTestSuite.cs:
	* Services/SystemTestProvider.cs: Only generate a test suite for
	projects that reference the nunit.framework assembly.

2005-08-12  Lluis Sanchez Gual  <lluis@novell.com> 

	* templates/*:
	* MonoDevelopNUnit.addin.xml: Properly reference resource icons and
	templates.
	* Makefile.am: Embed icon and templates as resources.
	* Gui/NUnitAssemblyGroupConfigurationNodeBuilder.cs: Track changes in
	the Stock class.

2005-08-10  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/NUnitService.cs:
	* Gui/UnitTestOptionsDialog.cs: Track changes in TreeViewOptions.

2005-08-10  Ben Motmans  <ben.motmans@gmail.com>

	* MonoDevelop.NUnit.mdp: references update

2005-08-09  Lluis Sanchez Gual  <lluis@novell.com>

	* Services/NUnitProjectTestSuite.cs: Use the new IParserContext API.

2005-08-03  Lluis Sanchez Gual  <lluis@novell.com>

	* Gui/TestPad.cs:
	* Gui/TestResultsPad.cs: Use the new command service to show
	context menus.

2005-07-27  Lluis Sanchez Gual  <lluis@novell.com> 

	* Project/NUnitAssemblyGroupProject.cs: Track api changes.

2005-07-13  Lluis Sanchez Gual  <lluis@novell.com> 

	* New addin implementation.

2005-03-16  John Luke  <john.luke@gmail.com>

	* Redo the nunit addin based on gnunit