Skip to content

Commit

Permalink
Fix attributes for test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sqeezy committed Sep 23, 2024
1 parent 2a1f388 commit cd983f1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions source/dbfitTest/ExecuteProcedureTest.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.Common;
using System.Data.SqlClient;
Expand Down Expand Up @@ -133,21 +134,25 @@ public override void Prepare() {
throw new NotImplementedException();
}

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override string CommandText {
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override int CommandTimeout {
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override CommandType CommandType {
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override UpdateRowSource UpdatedRowSource {
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
Expand All @@ -167,6 +172,7 @@ protected override DbTransaction DbTransaction {
set { throw new NotImplementedException(); }
}

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override bool DesignTimeVisible {
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
Expand Down

0 comments on commit cd983f1

Please sign in to comment.