layer1: add namespace manager summary

This commit is contained in:
Naeel
2026-04-26 10:55:56 +03:00
parent 67db8d71f1
commit 5c481b7293
5 changed files with 74 additions and 0 deletions
@@ -154,3 +154,10 @@ func TestNamespaceRemovalStrategyValues(t *testing.T) {
t.Fatalf("unexpected dispatch-remove strategy value")
}
}
func TestNamespaceManagerSummaryZeroValue(t *testing.T) {
summary := NamespaceManagerSummary{}
if summary.TotalNamespaces != 0 {
t.Fatalf("expected zero total namespaces")
}
}