Skip to content

Commit 55cd251

Browse files
NSHkrNSHkr
authored andcommitted
pass tests
1 parent f8a60d1 commit 55cd251

11 files changed

+213
-147
lines changed

lib/elixir_scope/foundation/utils.ex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ defmodule ElixirScope.Foundation.Utils do
66
All functions are pure and have no side effects.
77
"""
88

9+
import Bitwise
10+
911
@doc """
1012
Generate a unique ID using monotonic time and randomness.
1113

test/property/foundation/config_validation_properties_test.exs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ defmodule ElixirScope.Foundation.Property.ConfigValidationPropertiesTest do
22
use ExUnit.Case, async: false # Config changes affect global state
33
use ExUnitProperties
44

5+
@moduletag :slow # Property tests are inherently slow
6+
57
alias ElixirScope.Foundation.{Config}
68
alias ElixirScope.Foundation.Services.ConfigServer
79
alias ElixirScope.Foundation.TestHelpers

test/property/foundation/data_format_bottleneck_test.exs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ defmodule ElixirScope.Foundation.Property.DataFormatBottleneckTest do
22
use ExUnit.Case, async: false
33
use ExUnitProperties
44

5+
@moduletag :slow # Property tests are inherently slow
6+
57
alias ElixirScope.Foundation.{Telemetry}
68
alias ElixirScope.Foundation.Services.TelemetryService
79

test/property/foundation/error_properties_test.exs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ defmodule ElixirScope.Foundation.Property.ErrorPropertiesTest do
22
use ExUnit.Case, async: true
33
use ExUnitProperties
44

5+
@moduletag :slow # Property tests are inherently slow
6+
57
alias ElixirScope.Foundation.Error
68

79
# Generators for test data

test/property/foundation/event_correlation_properties_test.exs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ defmodule ElixirScope.Foundation.Property.EventCorrelationPropertiesTest do
22
use ExUnit.Case, async: false # EventStore operations affect shared state
33
use ExUnitProperties
44

5+
@moduletag :slow # Property tests are inherently slow
6+
57
alias ElixirScope.Foundation.{Events}
68
alias ElixirScope.Foundation.Services.EventStore
79
alias ElixirScope.Foundation.Types.Event

test/property/foundation/final_bottleneck_analysis.exs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ defmodule ElixirScope.Foundation.Property.FinalBottleneckAnalysisTest do
22
use ExUnit.Case, async: false
33
use ExUnitProperties
44

5+
@moduletag :slow # Property tests are inherently slow
6+
57
alias ElixirScope.Foundation.{Telemetry}
68
alias ElixirScope.Foundation.Services.TelemetryService
79

test/property/foundation/performance_debug_test.exs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ defmodule ElixirScope.Foundation.Property.PerformanceDebugTest do
22
use ExUnit.Case, async: false
33
use ExUnitProperties
44

5+
@moduletag :slow # Property tests are inherently slow
6+
57
alias ElixirScope.Foundation.Services.TelemetryService
68

79
# Comprehensive timing utilities

0 commit comments

Comments
 (0)