-
-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #186 from imbs-hl/coverage
Increase coverage
- Loading branch information
Showing
27 changed files
with
188 additions
and
363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
.Rcheck | ||
ranger.Rcheck/ | ||
*.Rproj | ||
.project | ||
.cproject |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,9 @@ Ratzeburger Allee 160 | |
[email protected] | ||
#-------------------------------------------------------------------------------*/ | ||
|
||
// Ignore in coverage report (not used in R package) | ||
// #nocov start | ||
|
||
#include <limits.h> | ||
#include <math.h> | ||
#include <iostream> | ||
|
@@ -66,3 +69,5 @@ DataChar::~DataChar() { | |
delete[] data; | ||
} | ||
} | ||
|
||
// #nocov end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,9 @@ Ratzeburger Allee 160 | |
[email protected] | ||
#-------------------------------------------------------------------------------*/ | ||
|
||
// Ignore in coverage report (not used in R package) | ||
// #nocov start | ||
|
||
#ifndef DATACHAR_H_ | ||
#define DATACHAR_H_ | ||
|
||
|
@@ -71,3 +74,4 @@ class DataChar: public Data { | |
}; | ||
|
||
#endif /* DATACHAR_H_ */ | ||
// #nocov end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,9 @@ Ratzeburger Allee 160 | |
[email protected] | ||
#-------------------------------------------------------------------------------*/ | ||
|
||
// Ignore in coverage report (not used in R package) | ||
// #nocov start | ||
|
||
#include <iostream> | ||
#include <vector> | ||
|
||
|
@@ -55,3 +58,5 @@ DataFloat::~DataFloat() { | |
} | ||
} | ||
|
||
// #nocov end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,9 @@ Ratzeburger Allee 160 | |
[email protected] | ||
#-------------------------------------------------------------------------------*/ | ||
|
||
// Ignore in coverage report (not used in R package) | ||
// #nocov start | ||
|
||
#ifndef DATAFLOAT_H_ | ||
#define DATAFLOAT_H_ | ||
|
||
|
@@ -63,3 +66,5 @@ class DataFloat: public Data { | |
}; | ||
|
||
#endif /* DATAFLOAT_H_ */ | ||
// #nocov end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.