Keep test-only functions internal

This commit is contained in:
Jan-Erik Rediger 2019-09-12 15:01:53 +02:00
Родитель 2f39dd10dd
Коммит 2fa2606bea
2 изменённых файлов: 4 добавлений и 7 удалений

Просмотреть файл

@ -42,12 +42,12 @@ public class CounterMetricType {
glean_counter_add(Glean.shared.handle, self.handle, amount)
}
public func testHasValue(_ pingName: String? = nil) -> Bool {
func testHasValue(_ pingName: String? = nil) -> Bool {
let pingName = pingName ?? self.sendInPings[0]
return glean_counter_test_has_value(Glean.shared.handle, self.handle, pingName) != 0
}
public func testGetValue(_ pingName: String? = nil) throws -> Int32 {
func testGetValue(_ pingName: String? = nil) throws -> Int32 {
let pingName = pingName ?? self.sendInPings[0]
if !testHasValue(pingName) {

Просмотреть файл

@ -60,8 +60,7 @@ public class CounterMetricType {
/// * pingName: represents the name of the ping to retrieve the metric for.
/// Defaults to the first value in `sendInPings`.
/// - returns: true if metric value exists, otherwise false
// TODO(bug 1580780): Allow for tests only
public func testHasValue(_ pingName: String? = nil) -> Bool {
func testHasValue(_ pingName: String? = nil) -> Bool {
// TODO(bug 1580783): Assert testing mode
let pingName = pingName ?? self.sendInPings[0]
@ -78,9 +77,7 @@ public class CounterMetricType {
/// Defaults to the first value in `sendInPings`.
///
/// - returns: value of the stored metric
///
// TODO(bug 1580780): Allow for tests only
public func testGetValue(_ pingName: String? = nil) throws -> Int32 {
func testGetValue(_ pingName: String? = nil) throws -> Int32 {
// TODO(bug 1580783): Assert testing mode
let pingName = pingName ?? self.sendInPings[0]