Skip to content

Commit

Permalink
start writing the missing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bassosimone committed Feb 7, 2024
1 parent ff42ca8 commit f97f05d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions internal/engine/experiment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,12 @@ func TestExperimentHonoursSharingDefaults(t *testing.T) {
})
}
}

func TestExperimentMeasurementSummaryKeysNotImplemented(t *testing.T) {
t.Run("the .Anomaly method returns false", func(t *testing.T) {
sk := &ExperimentMeasurementSummaryKeysNotImplemented{}
if sk.Anomaly() != false {
t.Fatal("expected false")
}
})
}

0 comments on commit f97f05d

Please sign in to comment.