[MemberData(nameof(GetData), 0, false)] // Zero (or less) means "all data elements" to the GetData method
        internal async Task OperationExecuteAsPrimaryTheory(OperationBase op)
        {
            var helper = new OperationTestHelper();

            await helper.PerformOperationExecuteTestAsPrimary(op);
        }
 //[Fact]
 public async Task ConnectionOperationExecuteTest()
 {
     await _helper.PerformOperationExecuteTestAsPrimary(new ConnectionOperation());
 }
 //[Fact]
 public async Task BrowseOperationExecuteAsPrimaryTest()
 {
     await _helper.PerformOperationExecuteTestAsPrimary(new BrowseOperation("_cac._tcp"));
 }