-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
1729 lines (1002 loc) · 40.5 KB
/
ChangeLog
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
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2024-02-15 12:15 zenkar
* cleaned up minor CRAN check notes
2009-04-22 15:52 burgerm
* tests/runitInspect.r: added test cases for more complex functions
to track
2009-04-22 15:50 burgerm
* R/inspector.r: includeTracker: fix `<- if` call handling which
caused the inspect mechanism to fail
2009-04-22 15:48 burgerm
* R/runit.r: isValidTestSuite: check for empty name string as this
will cause subsequent failure which is harder to understand
2009-04-22 15:46 burgerm
* NAMESPACE: declare S3 print and summary methods for RUnitTestData
2009-04-22 11:37 burgerm
* inst/doc/RUnit.pdf: removed: use R CMD build to generate, no need
to store in repository
2009-04-16 11:54 burgerm
* DESCRIPTION: patch level 0.4.22: clarified GPL version
2009-04-16 11:49 burgerm
* R/textProtocol.r: specified license to be version 2 of the GPL
2009-04-16 11:48 burgerm
* R/testLogger.r: specified license to be version 2 of the GPL;
extended function descriptions
2009-04-16 11:44 burgerm
* R/: checkFuncs.r, exportHTML.r, html.r, htmlProtocol.r,
inspector.r, runit.r: specified license to be version 2 of the
GPL
2009-04-16 11:39 burgerm
* R/00Init.r: specified license to be version 2 of the GPL
2009-04-16 11:23 burgerm
* inst/: examples/correctTestCase.r,
examples/runitVirtualClassTest.r, share/R/checkCode.r,
share/R/compareRUnitTestData.r: specified license to be version 2
of the GPL
2009-04-16 11:18 burgerm
* tests/: runitHTMLProtocol.r, runitInspect.r,
runitPlotConnection.r, runitRUnit.r, runitS4.r, runitSetUp.r,
runitTearDown.r, runitTextProtocol.r: specified license to be
version 2 of the GPL
2009-04-16 11:13 burgerm
* man/: RUnit-internal.Rd, RUnit-intro.Rd, checkFuncs.Rd,
inspect.Rd, printHTML.trackinfo.Rd, runit.Rd, textProtocol.Rd,
tracker.Rd: specified license to be version 2 of the GPL
2009-03-16 17:38 burgerm
* R/inspector.r: always coninue if-else on the same line removed
semicolon at line ends
2009-03-16 17:36 burgerm
* R/runit.r: defineTestSuite: gained some argument checks
isValidTestSuite: warning messages modified to handle multiple
names some typos in inline documentation fixed
2009-03-16 17:29 burgerm
* R/checkFuncs.r: always coninue if else on the same line
checkIdentical: added precondition check
2009-03-16 17:26 burgerm
* R/exportHTML.r: always coninue if-else on the same line removed
semicolon at line ends
2009-03-16 17:24 burgerm
* R/html.r: always coninue if else on the same line html.r removed
semicolon at line ends
2009-03-16 17:21 burgerm
* inst/doc/RUnit.Rnw: minute corrections
2009-03-05 16:58 burgerm
* DESCRIPTION: License field updated according to R-ext for R 2.8.1
2009-01-23 19:13 burgerm
* man/: checkFuncs.Rd, inspect.Rd, printHTML.trackinfo.Rd,
runit.Rd, textProtocol.Rd, tracker.Rd: corrected typos, changed
formating of code chunks to allow for proper display in pdf
reference manual (suggested by Terry Therneau)
2009-01-23 17:23 burgerm
* NEWS: typos corrected
2009-01-15 14:47 burgerm
* DESCRIPTION: patch level 0.4.21
2009-01-15 14:46 burgerm
* ChangeLog: update for 0.4.21 submission
2009-01-15 14:46 burgerm
* NEWS: updated for 0.4.21 submission
2009-01-15 14:26 burgerm
* man/tracker.Rd: enclosed \item statements within \describe
environment: identified by new R 2.9.0 Rd parser
2009-01-15 14:23 burgerm
* man/runit.Rd: defineTestSuite default argument value: use \
escape to display \\ in resulting help page after parsing
2008-11-07 14:49 burgerm
* R/htmlProtocol.r: compiler detection failed on MacOS, fixed,
thanks to report by Steffen Neumann
2008-11-07 12:20 burgerm
* R/inspector.r: use seq_along
2008-11-07 12:19 burgerm
* R/checkFuncs.r: check for missing arguments
2008-11-07 12:15 burgerm
* DESCRIPTION: patch level 0.4.20
2008-06-20 17:51 burgerm
* R/textProtocol.r: printTextProtocol rewritten by Klaus using
toText; getErrors moved here, TODO replace with S4 method
2008-06-20 17:49 burgerm
* NAMESPACE: adopt S4 classes and methods; removed some outdated
functions
2008-06-20 17:36 burgerm
* R/runit.r: rewritten by Klaus, using S4 design and condition
mechanism
2008-06-20 17:29 burgerm
* R/00Init.r: added generics definition used for S4 methods
2008-06-20 17:27 burgerm
* R/testLogger.r: removed; will eventually be replaced
2008-06-20 17:26 burgerm
* R/: TestFileResult.r, TestFunctionResult.r, TestResult.r,
TestSuite.r, TestSuiteResult.r: S4 class based design of RUnit
2008-06-20 17:26 burgerm
* R/checkFuncs.r: rewritten by Klaus using conditions
2008-06-20 17:24 burgerm
* R/utility.r: utility functions not attributed to one class;
miscellaneous
2008-06-19 15:57 burgerm
* ChangeLog: updated
2008-06-19 13:49 burgerm
* tests/runitInspect.r: added 2nd example function
2008-06-19 13:46 burgerm
* man/textProtocol.Rd: details section updated; example on RUnit
test suite execution added in a dontrun clause: works only on
source package as tests/ folder is not copied to installed
package
2008-06-19 13:42 burgerm
* man/runit.Rd: runTestFile example call added
2008-06-19 10:07 burgerm
* DESCRIPTION: patch version 0.4.19
2008-06-18 19:18 burgerm
* R/textProtocol.r: details section: output check number per test
case
2008-06-18 19:17 burgerm
* R/htmlProtocol.r: details section: output check number per test
case; improved compiler detection
2008-06-18 19:16 burgerm
* R/runit.r: isValidTestSuite: changed check for object class to
is() to allow derived class objects to pass (suggested by
Philippe Grosjean); use addCheckNum to set number of checks
performed within test function
2008-06-18 19:13 burgerm
* R/testLogger.r: added addCheckNum, getCheckNum functions to allow
check number output in summary
2008-06-18 19:12 burgerm
* R/checkFuncs.r: checkEquals: argument checkNames checked for
correct type; not required paste calls around error message
removed (suggested by Philippe Grosjean)
2008-06-18 19:09 burgerm
* R/00Init.r: removed start up message
2008-04-29 10:06 burgerm
* inst/share/R/compareRUnitTestData.r: check for empty test case
results and exclude them from comparison; replaced seq with
seq_along
2007-11-30 15:13 burgerm
* tests/runitRUnit.r: error introduced in last commit corrected;
some more check conditions added
2007-11-30 14:57 burgerm
* R/htmlProtocol.r: fixed errors introduced in last commit:
replaced seq_len with seq_along
2007-11-27 20:07 burgerm
* ChangeLog: updated
2007-11-27 20:05 burgerm
* DESCRIPTION: patch level 0.4.18; R dependency set to 2.4.0 were
seq_along was introduced
2007-11-27 19:56 burgerm
* tests/runitRUnit.r: seq_along introduced; partial argument names
expanded
2007-11-27 19:55 burgerm
* R/runit.r: seq_along introduced
2007-11-27 19:53 burgerm
* R/exportHTML.r: seq_along introduced; partial argument names
expanded
2007-11-27 19:52 burgerm
* R/: html.r, htmlProtocol.r, testLogger.r, textProtocol.r:
seq_along introduced
2007-05-21 13:42 burgerm
* NEWS: updated for 0.4.17 CRAN submission
2007-05-21 13:37 burgerm
* DESCRIPTION: patch level 0.4.17
2007-05-21 13:33 burgerm
* man/: textProtocol.Rd, runit.Rd: changed example code to work
with installed package test case example path
2007-05-18 14:58 burgerm
* R/runit.r: try harder to ensure previous error handler is
reinstantiated after test runner execution
2007-05-18 14:56 burgerm
* DESCRIPTION: patch level 0.4.16
2007-05-18 14:55 burgerm
* NEWS: updated for 0.4.16
2007-05-16 15:17 burgerm
* DESCRIPTION: SaveImage replaced by LazyLoad
2007-05-16 14:27 burgerm
* inst/share/R/compareRUnitTestData.r: initial prototype: comare
two RUnitTestData objects: intended for test run time performance
evaluation
2007-05-16 14:24 burgerm
* R/runit.r: .sourceTestFile: updated to observe - after sandbox
introduction - test case file defined .setUp and .tearDown
functions
2007-05-16 14:21 burgerm
* tests/runitS4.r: check S4 setClass + removeClass chain with new
sandbox implementation
2007-05-16 14:19 burgerm
* tests/: runitSetUp.r, runitTearDown.r: added for focused check of
.setUp and .tearDown functioning
2007-05-16 14:16 burgerm
* tests/runitRUnit.r: class names changed; clean up operation
revised: try harder to reset to previous global state
2007-05-16 14:15 burgerm
* tests/runitInspect.r: .tearDown added: cleanup
2007-05-16 10:49 burgerm
* DESCRIPTION: dev patch level 0.4.15-2
2007-05-16 00:46 burgerm
* man/runit.Rd: added encoding latin1 to display umlaut correctly
if available; make use of describe command to format details
section
2007-05-16 00:42 burgerm
* man/checkFuncs.Rd: added encoding latin1 to display umlaut
correctly if available; added paragraph on S4 classes and methods
to details section
2007-05-15 23:46 burgerm
* man/inspect.Rd: added encoding latin1 to display umlaut correctly
if available
2007-05-15 23:45 burgerm
* man/textProtocol.Rd: added encoding latin1 to display umlaut
correctly if available; added header; added \pkg command around
RUnit phrase
2007-05-15 23:43 burgerm
* man/: RUnit-intro.Rd, tracker.Rd, printHTML.trackinfo.Rd: added
encoding latin1 to display umlaut correctly if available
2007-05-15 17:33 burgerm
* R/runit.r: make use of a new environment defined as child of
.GlobalEnv to allow setClass calls wo where argument
2007-04-25 08:46 burgerm
* R/TestCaseMethods.r: construct method added; verify method checks
partially switched off
2007-04-25 08:39 burgerm
* R/TestCaseTestResultData.r: slots checkNum, traceBack and
warnMessageStack added
2007-04-23 00:14 burgerm
* R/testLogger.r: replaced by condition signals
2007-04-23 00:10 burgerm
* R/TestCaseTestResultDataMethods.r: .printTextProtocol added: used
in recursive call chain
2007-04-23 00:08 burgerm
* R/: SourceFileTestResultDataMethods.r,
TestSuiteTestResultDataMethods.r: .printTextProtocol, getError
and getTestCaseNum added: used in recursive call chain
2007-04-23 00:05 burgerm
* R/runit.r: removed .testLogger; added warning handler; switched
to condition signals; use testCaseCheckCount for check call
counting
2007-04-23 00:03 burgerm
* R/checkFuncs.r: removed .testLogger
2007-04-23 00:00 burgerm
* DESCRIPTION: removed .testLogger; added experimental condition
signaling
2007-04-15 12:50 burgerm
* DESCRIPTION: patch level 0.6.0-2 exploration stage; NOT FIT FOR
PUBLIC USE
2007-04-15 12:48 burgerm
* NAMESPACE: new S4 classes and methods added
2007-04-15 12:47 burgerm
* R/runit.r: experimental: enabled new S4 class based result
collection IN PARALLEL to exiting logger mechanism for
exploration; NOT FIT FOR PUBLIC USE
2007-04-15 12:45 burgerm
* R/Logger.r: getSealed added to exported accessors
2007-04-15 12:40 burgerm
* R/checkFuncs.r: RUnit specific signals/conditions implemented and
enabled in check* functions
2007-04-15 12:38 burgerm
* R/zzz.r: log statement added; TestResultData method def enabled
2007-04-15 12:37 burgerm
* R/TestSuiteTestResultDataMethods.r: method implementation added,
accessor methods added
2007-04-15 12:36 burgerm
* R/TestSuiteTestResultData.r: slots error & errorMsg added to
cover suite level errors
2007-04-15 12:35 burgerm
* R/TestResultData.r: slot name changed
2007-04-15 12:34 burgerm
* R/TestCaseTestResultDataMethods.r: method implementation added,
accessor methods added
2007-04-15 12:33 burgerm
* R/TestCaseTestResultData.r: class definition reworked, slots
renamed and added: NOT FINAL DESIGN
2007-04-15 12:31 burgerm
* R/SourceFileTestResultDataMethods.r: method implementation added,
getTestResultData added
2007-04-15 12:29 burgerm
* R/SourceFileTestResultData.r: slot name renamed to
sourceFileName, slots error & errorMsg added to cover source file
level errors
2007-04-15 12:28 burgerm
* R/htmlProtocol.r: regexpr fixed for R 2.5.0
2007-04-12 10:29 burgerm
* R/inspector.r: unused variables removed
2007-04-09 19:42 burgerm
* tests/runitRUnit.r: all check* test cases reviewed and extended
to cover more failure conditions; checkEquals extended to be
checked for all basic R types and S4 objects
2007-04-09 19:38 burgerm
* R/testLogger.r: errorHandler: rewritten to be more failure
robust; docu added
2007-04-09 19:25 burgerm
* R/checkFuncs.r: checkEqualsNumeric: one more argument check added
(now identical to checkEquals; docu description made more clear
2007-04-08 14:14 burgerm
* R/runit.r: runTestSuite docu make more clear
2007-04-08 14:11 burgerm
* R/00Init.r: pass lib argument on to packageDescription to load
correct DESCRITPION file
2007-04-05 16:28 burgerm
* R/htmlProtocol.r: included deactivatedStyle tag to HTML output:
non-visible change
2007-04-02 00:08 burgerm
* R/zzz.r: class and method init calls added/updated
2007-04-02 00:04 burgerm
* R/00Init.r: packageDescription now observes the library path for
the currently loaded package version
2007-04-02 00:02 burgerm
* R/TestCaseTestResultData.r: sealed argument controlled by .GLOBAL
state; slot failed renamed to failure
2007-04-01 23:59 burgerm
* R/: TestResultData.r, SourceFileTestResultData.r,
TestSuiteTestResultData.r: sealed argument controlled by .GLOBAL
state
2007-04-01 23:53 burgerm
* R/: TestCase.r, TestCaseMethods.r, TestLogger.r,
TestLoggerMethods.r: playground extended
2007-04-01 23:51 burgerm
* R/ArrayMethods.r: - code formating changes ArrayMethods.r
- setNames: unnecessary precondition check removed
- concat: precondition check added
method definition also added to Array base class
- printObject rewritten to use show
- show method added
- array class constructor: sealed argument controlled by .GLOBAL
state
- applyFun method definition added to array class generator
2007-04-01 23:43 burgerm
* R/Array.r: allow sealed argument to be controlled by .GLOBAL
state
2007-04-01 23:42 burgerm
* R/classUtilities.r: in setGeneric avoid assigning to temp
variable value as no postprocessing is intended here and this
assignment has a small memory penalty as shown by memprof
2007-04-01 23:38 burgerm
* DESCRIPTION: patch level 0.6.0-1: more exploratory code chunks
added
2007-03-31 23:15 burgerm
* inst/examples/runitVirtualClassTest.r: S4 class example
2007-03-29 09:26 burgerm
* inst/share/R/checkCode.r: utility wrappers around checkUsage
(package codetools) to check no default location code files;
experimental
2007-03-23 15:18 burgerm
* tests/runitPlotConnection.r: deactivate test case if R is run in
non-interactive mode i.e. most likely no X server is present but
require by the png device
2007-03-19 21:08 burgerm
* tests/runitPlotConnection.r: simple run test
2007-03-19 01:54 burgerm
* R/htmlProtocol.r: fixed gcc query under Windows: report NA
2007-03-19 01:52 burgerm
* NEWS: printHTMLProtocol fixed (Windows)
2007-03-19 00:55 burgerm
* man/runit.Rd: added header
2007-03-19 00:54 burgerm
* tests/runitRUnit.r: added exception check for call object: R
2.5.0 devel issue with new try implementation
2007-03-19 00:51 burgerm
* tests/: runitTextProtocol.r, runitHTMLProtocol.r: added check for
successful execution, taking care of nested test suite calls
2007-03-19 00:49 burgerm
* inst/examples/correctTestCase.r: R 1.9.0 compatibility: replace
isTRUE by identical
2007-03-19 00:45 burgerm
* R/inspector.r: docu updated/extended; tracker closure functions
revised: internal object now is always of S3 class trackInfo,
renamed to trackInfo for clarity, addFunc simplified, reinit of
oldTime was not written to closure variable; several
precondition checks added
2007-03-19 00:40 burgerm
* R/exportHTML.r: functions now return invisible; HTML head info
updated; result page file names changed; HTML footer added
2007-03-19 00:36 burgerm
* man/printHTML.trackinfo.Rd: header added; details text
description corrected
2007-03-19 00:34 burgerm
* man/tracker.Rd: header added; moved closure functions to new
section to avoid R CMD check warning; added isValid
2007-03-16 12:25 burgerm
* NEWS: updated for 0.4.15
2007-03-16 12:22 burgerm
* DESCRIPTION: patch level 0.4.15
2007-03-16 12:08 burgerm
* R/checkFuncs.r: compatibility to R 1.9.0 as declared in
DESCRIPTION: removed calls to isTRUE as this was introduced only
in R 2.1.0, replaced where needed by identical(TRUE, x)
2007-03-16 12:07 burgerm
* R/htmlProtocol.r: createTestFuncRef: removed unnecessary escape
characters in gsub call
2007-03-16 12:05 burgerm
* tests/runitRUnit.r: compatibility to R 1.9.0 as declared in
DESCRIPTION: removed calls to isTRUE as this was introduced only
in R 2.1.0, replaced where needed by identical(TRUE, x)
2006-08-30 01:13 burgerm
* DESCRIPTION: patch level 0.6.0-0: start new minor level 0.6.0.x
for development, first public release will be 0.6.0; 0.5.x is
reserved for potential S3 implementation updates; class layout as
described in dia
2006-08-30 01:11 burgerm
* NAMESPACE: initial commit: class layout as described in dia
2006-08-30 00:58 burgerm
* R/TestSuiteTestResultDataMethods.r: initial commit: class layout
as described in dia
2006-08-30 00:54 burgerm
* R/: ArrayMethods.r, Logger.r, SignalHandler.r,
SourceFileTestResultDataMethods.r,
TestCaseTestResultDataMethods.r, TestSuiteMethods.r,
classUtilities.r, zzz.r: initial commit: class layout as
described in dia
2006-08-30 00:51 burgerm
* R/: Array.r, SourceFileTestResultData.r,
TestCaseTestResultData.r, TestResultData.r, TestSuite.r,
TestSuiteTestResultData.r: initial commit: class layout as
described in dia
2006-08-22 11:21 burgerm
* NEWS: 0.4.14 update log added
2006-08-17 09:12 burgerm
* DESCRIPTION: patch level 0.4.14: package utils dependency made
explicit in DESCRIPTION and NAMESPACE
2006-08-17 01:14 burgerm
* NAMESPACE: import of package utils added (required for R 2.4.0)
2006-08-16 17:39 burgerm
* inst/doc/RUnit.Rnw: added a note on the new arguments rngKind,
and rngNormalKind; replaced path construction via paste by the
more protable file.path (Gregor Gorjanc)
2006-08-16 17:36 burgerm
* inst/doc/RUnit.pdf: updated
2006-08-15 18:52 burgerm
* ChangeLog: updated
2006-08-15 18:51 burgerm
* R/textProtocol.r: return type enforced (a bit more) to be logical
2006-08-15 18:50 burgerm
* R/runit.r: defineTestSuite, runTestFile: added arguments rngKind,
rngNormalKind to allow configuartion of default RNG
configuration, docu tag updated
2006-08-15 18:48 burgerm
* R/testLogger.r: documentaion tags added
2006-08-15 18:47 burgerm
* R/htmlProtocol.r: return type enforced (a bit more) to be
logical, documentation updated
2006-08-15 18:41 burgerm
* R/textProtocol.r: documentation updated; printTextProtocol return
type changed to logical
2006-08-15 18:34 burgerm
* R/html.r: documentation tags updated
2006-08-15 18:33 burgerm
* R/exportHTML.r: file I/O: replaced paste call by more protable
file.path
2006-08-15 18:31 burgerm
* tests/runitRUnit.r: defineTestSuite test case added
2006-08-15 18:29 burgerm
* man/runit.Rd: runTestFile, defineTestSuite: documented new
arguments rngKind, rngNormalKind
2006-08-15 18:27 burgerm
* NEWS: updated: added recent releases
2006-08-15 18:26 burgerm
* DESCRIPTION: patch level: 0.4.12
2006-08-08 00:58 burger
* R/runit.r: defineTestSuite - allow file extension .R
2006-08-08 00:57 burger
* DESCRIPTION: patch level 0.4.12 - allow file extension .R
(runit.r)
2006-07-17 19:27 burger
* R/00Init.r: package version added to startup message
2006-05-22 10:33 burger
* R/checkFuncs.r: DEACTIVATED - fixed typo in var name
2006-04-05 13:47 burger
* R/checkFuncs.r: checkException: added comment on contributing
author
2006-04-04 19:25 burger
* R/TestResultClass.r: License header text added
2006-04-04 19:25 burger
* R/TestLogger.r: initial commit
2006-04-04 19:24 burger
* R/: TestResultMethods.r, TestSuiteResult.r,
TestSuiteResultMethods.r: Lincence header text added
2006-04-04 17:38 burger
* NEWS, inst/doc/RUnit.pdf: updated
2006-04-04 17:08 burger
* man/inspect.Rd: updated inspect call and argument documentation
2006-04-04 17:08 burger
* man/printHTML.trackinfo.Rd: updated inspect call
2006-04-04 17:07 burger
* man/tracker.Rd: updated inspect calls
2006-04-04 17:07 burger
* inst/doc/RUnit.Rnw: updated inspect calls, added some line to
recomendations
2006-04-03 18:35 burger
* tests/runitRUnit.r: checkException: silent added to checks
2006-04-03 18:34 burger
* R/checkFuncs.r: checkException: argument silent added
2006-04-03 18:32 burger
* man/checkFuncs.Rd: checkException, checkEquals documentation
updated
2006-04-03 18:31 burger
* DESCRIPTION: patch level 0.4.11: checkException arg added
2006-04-03 14:40 burger
* inst/examples/runitfoo.r: example function
2006-03-21 15:47 burger
* tests/runitRUnit.r: unsuccessful attempt to extend runTestSuite
test case
2006-03-21 15:37 burger
* R/runit.r: isValidTestSuite: error message texts added
2006-03-21 15:34 burger
* R/inspector.r: inspect, and includeTracker have new argument
track, which defaults to track for consitency; API docu enhanced
and extended
2006-03-21 15:32 burger
* tests/runitInspect.r: reactivated both test cases after changes
to inspect, and includeTracker
2006-03-21 15:31 burger
* DESCRIPTION: patch level 0.4.10
2006-03-07 20:41 burger
* R/checkFuncs.r: checkEquals: new compatibility argument to allow
to workaround stricter all.equal checks; tolerance precondtion
added
2006-03-07 20:39 burger
* DESCRIPTION: patch level 0.4.9: checkEquals has new compatibility
argument
2006-01-20 18:25 burger
* tests/runitRUnit.r: checkIdentical added; checkEquals test case
extended
2006-01-20 18:24 burger
* man/checkFuncs.Rd: checkIdentical added; arguments a,b, renamed
consitent with all.equal
2006-01-20 18:23 burger
* R/checkFuncs.r: checkIdentical added; msg argument default added;
msg added to stop calls; arguments a,b, renamed consitent with
all.equal
2006-01-20 18:21 burger
* NAMESPACE: checkIdentical added
2006-01-20 18:18 burger
* DESCRIPTION: patch version 0.4.8: checkIdentical added
2006-01-05 15:09 burger
* R/checkFuncs.r: checkEqualsNumeric: update to be compatible with
R 2.3.0
2006-01-05 15:08 burger
* DESCRIPTION: patch level 0.4.7: update for checkEqualsNumeric to
be compattible with R 2.3.0
2005-12-12 10:35 burger
* DESCRIPTION: patch level 0.4.6
2005-12-12 10:32 burger
* R/htmlProtocol.r: replaced HOST query by supposedly platform
independent Sys.info variant
2005-12-05 14:44 burger
* R/htmlProtocol.r: system info table format changed
2005-12-05 14:44 burger
* R/html.r: writeHtmlTable added; API tags updated
2005-11-21 15:29 burger
* DESCRIPTION: patch level 0.5.0 added - temporary - dependency on
EpiR.base (arrayTemplate class)
2005-11-21 15:28 burger
* R/zzz.r: class & method init currently required arrayTemplate and
thus relies on EpiR.base FIXME: remove dependency on EpiR.base
once design has matured
2005-11-21 15:28 burgerm
* R/zzz.r: file zzz.r was added on branch S4-devel-branch-2006-08
on 2006-08-29 22:54:46 +0000
2005-11-21 15:26 burger
* R/Logger.r: first exploration
2005-11-21 15:26 burgerm
* R/Logger.r: file Logger.r was added on branch
S4-devel-branch-2006-08 on 2006-08-29 22:54:46 +0000
2005-11-21 15:15 burger
* R/textProtocol.r: added execTime S3 method
2005-11-21 15:15 burger
* R/: TestFileResult.r, TestFunctionResult.r, TestResultMethods.r,
TestSuiteResult.r, TestFileResultMethods.r,
TestSuiteResultMethods.r: first prototype
2005-11-21 15:13 burger
* R/TestResultClass.r: first prototype: virtual base class: the
mother of all test results
2005-11-14 13:40 burger
* DESCRIPTION: patch level 0.4.5 improvements to error detection in
runTestSuite & new test cases
2005-11-14 13:39 burger
* tests/runitRUnit.r: added isValidTestSuite, runTestFile, and
runTestSuite test cases added test case description
2005-11-14 13:37 burger