Skip to content

Commit

Permalink
Edit project files; minor code edits
Browse files Browse the repository at this point in the history
  • Loading branch information
peteroupc committed Jan 16, 2025
1 parent 6f8aa02 commit e4444fa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
1 change: 1 addition & 0 deletions CBOR/CBOR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0; net6.0</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>5.0.0-alpha2</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Owners>Peter Occil</Owners>
Expand Down
15 changes: 10 additions & 5 deletions CBORTest/CBORObjectTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5610,7 +5610,8 @@ public void TestCalcEncodedSizeCircularRefs3bc2a() {
} catch (Exception ex) {
Assert.Fail(ex.ToString());
throw new InvalidOperationException(String.Empty, ex);
}}
}
}
[Test]
[Timeout(10001)]
public void TestCalcEncodedSizeCircularRefs3bc3() {
Expand All @@ -5631,7 +5632,8 @@ public void TestCalcEncodedSizeCircularRefs3bc3() {
} catch (Exception ex) {
Assert.Fail(ex.ToString());
throw new InvalidOperationException(String.Empty, ex);
}}
}
}
[Test]
[Timeout(10001)]
public void TestCalcEncodedSizeCircularRefs3bc4() {
Expand All @@ -5651,7 +5653,8 @@ public void TestCalcEncodedSizeCircularRefs3bc4() {
} catch (Exception ex) {
Assert.Fail(ex.ToString());
throw new InvalidOperationException(String.Empty, ex);
}}
}
}
[Test]
[Timeout(10001)]
public void TestCalcEncodedSizeCircularRefs3bc5() {
Expand All @@ -5671,7 +5674,8 @@ public void TestCalcEncodedSizeCircularRefs3bc5() {
} catch (Exception ex) {
Assert.Fail(ex.ToString());
throw new InvalidOperationException(String.Empty, ex);
}}
}
}
[Test]
[Timeout(10001)]
public void TestCalcEncodedSizeCircularRefs3bc6() {
Expand All @@ -5691,7 +5695,8 @@ public void TestCalcEncodedSizeCircularRefs3bc6() {
} catch (Exception ex) {
Assert.Fail(ex.ToString());
throw new InvalidOperationException(String.Empty, ex);
}}
}
}
[Test]
[Timeout(10001)]
public void TestCalcEncodedSizeCircularRefs3bc7() {
Expand Down

0 comments on commit e4444fa

Please sign in to comment.