Skip to content

Commit cb4896b

Browse files
committed
Bump version to v3.18.0
1 parent 4221724 commit cb4896b

File tree

145 files changed

+686
-651
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+686
-651
lines changed

RDFSharp.Test/Model/Facets/RDFLengthFacetTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class RDFLengthFacetTest
2525
{
2626
#region Tests
2727
[TestMethod]
28-
28+
2929
public void ShouldCreateLengthFacet()
3030
{
3131
RDFLengthFacet facet = new RDFLengthFacet(6);
@@ -36,7 +36,7 @@ public void ShouldCreateLengthFacet()
3636
}
3737

3838
[TestMethod]
39-
39+
4040
public void ShouldValidateLengthFacet()
4141
{
4242
RDFLengthFacet facet = new RDFLengthFacet(6);
@@ -55,7 +55,7 @@ public void ShouldValidateLengthFacet()
5555
}
5656

5757
[TestMethod]
58-
58+
5959
public void ShouldConvertLengthFacetToGraph()
6060
{
6161
RDFLengthFacet facet = new RDFLengthFacet(6);

RDFSharp.Test/Model/Facets/RDFMaxExclusiveFacetTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class RDFMaxExclusiveFacetTest
2525
{
2626
#region Tests
2727
[TestMethod]
28-
28+
2929
public void ShouldCreateMaxExclusiveFacet()
3030
{
3131
RDFMaxExclusiveFacet facet = new RDFMaxExclusiveFacet(6.145);
@@ -36,7 +36,7 @@ public void ShouldCreateMaxExclusiveFacet()
3636
}
3737

3838
[TestMethod]
39-
39+
4040
public void ShouldValidateMaxExclusiveFacet()
4141
{
4242
RDFMaxExclusiveFacet facet = new RDFMaxExclusiveFacet(6);
@@ -55,7 +55,7 @@ public void ShouldValidateMaxExclusiveFacet()
5555
}
5656

5757
[TestMethod]
58-
58+
5959
public void ShouldConvertMaxExclusiveFacetToGraph()
6060
{
6161
RDFMaxExclusiveFacet facet = new RDFMaxExclusiveFacet(6);

RDFSharp.Test/Model/Facets/RDFMaxInclusiveFacetTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class RDFMaxInclusiveFacetTest
2525
{
2626
#region Tests
2727
[TestMethod]
28-
28+
2929
public void ShouldCreateMaxInclusiveFacet()
3030
{
3131
RDFMaxInclusiveFacet facet = new RDFMaxInclusiveFacet(6.145);
@@ -36,7 +36,7 @@ public void ShouldCreateMaxInclusiveFacet()
3636
}
3737

3838
[TestMethod]
39-
39+
4040
public void ShouldValidateMaxInclusiveFacet()
4141
{
4242
RDFMaxInclusiveFacet facet = new RDFMaxInclusiveFacet(6);
@@ -55,7 +55,7 @@ public void ShouldValidateMaxInclusiveFacet()
5555
}
5656

5757
[TestMethod]
58-
58+
5959
public void ShouldConvertMaxInclusiveFacetToGraph()
6060
{
6161
RDFMaxInclusiveFacet facet = new RDFMaxInclusiveFacet(6);

RDFSharp.Test/Model/Facets/RDFMaxLengthFacetTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class RDFMaxLengthFacetTest
2525
{
2626
#region Tests
2727
[TestMethod]
28-
28+
2929
public void ShouldCreateMaxLengthFacet()
3030
{
3131
RDFMaxLengthFacet facet = new RDFMaxLengthFacet(6);
@@ -36,7 +36,7 @@ public void ShouldCreateMaxLengthFacet()
3636
}
3737

3838
[TestMethod]
39-
39+
4040
public void ShouldValidateMaxLengthFacet()
4141
{
4242
RDFMaxLengthFacet facet = new RDFMaxLengthFacet(6);
@@ -56,7 +56,7 @@ public void ShouldValidateMaxLengthFacet()
5656
}
5757

5858
[TestMethod]
59-
59+
6060
public void ShouldConvertMaxLengthFacetToGraph()
6161
{
6262
RDFMaxLengthFacet facet = new RDFMaxLengthFacet(6);

RDFSharp.Test/Model/Facets/RDFMinExclusiveFacetTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class RDFMinExclusiveFacetTest
2525
{
2626
#region Tests
2727
[TestMethod]
28-
28+
2929
public void ShouldCreateMinExclusiveFacet()
3030
{
3131
RDFMinExclusiveFacet facet = new RDFMinExclusiveFacet(6.145);
@@ -36,7 +36,7 @@ public void ShouldCreateMinExclusiveFacet()
3636
}
3737

3838
[TestMethod]
39-
39+
4040
public void ShouldValidateMinExclusiveFacet()
4141
{
4242
RDFMinExclusiveFacet facet = new RDFMinExclusiveFacet(6);
@@ -56,7 +56,7 @@ public void ShouldValidateMinExclusiveFacet()
5656
}
5757

5858
[TestMethod]
59-
59+
6060
public void ShouldConvertMinExclusiveFacetToGraph()
6161
{
6262
RDFMinExclusiveFacet facet = new RDFMinExclusiveFacet(6);

RDFSharp.Test/Model/Facets/RDFMinInclusiveFacetTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class RDFMinInclusiveFacetTest
2525
{
2626
#region Tests
2727
[TestMethod]
28-
28+
2929
public void ShouldCreateMinInclusiveFacet()
3030
{
3131
RDFMinInclusiveFacet facet = new RDFMinInclusiveFacet(6.145);
@@ -36,7 +36,7 @@ public void ShouldCreateMinInclusiveFacet()
3636
}
3737

3838
[TestMethod]
39-
39+
4040
public void ShouldValidateMinInclusiveFacet()
4141
{
4242
RDFMinInclusiveFacet facet = new RDFMinInclusiveFacet(6);
@@ -55,7 +55,7 @@ public void ShouldValidateMinInclusiveFacet()
5555
}
5656

5757
[TestMethod]
58-
58+
5959
public void ShouldConvertMinInclusiveFacetToGraph()
6060
{
6161
RDFMinInclusiveFacet facet = new RDFMinInclusiveFacet(6);

RDFSharp.Test/Model/Facets/RDFMinLengthFacetTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class RDFMinLengthFacetTest
2525
{
2626
#region Tests
2727
[TestMethod]
28-
28+
2929
public void ShouldCreateMinLengthFacet()
3030
{
3131
RDFMinLengthFacet facet = new RDFMinLengthFacet(6);
@@ -36,7 +36,7 @@ public void ShouldCreateMinLengthFacet()
3636
}
3737

3838
[TestMethod]
39-
39+
4040
public void ShouldValidateMinLengthFacet()
4141
{
4242
RDFMinLengthFacet facet = new RDFMinLengthFacet(6);
@@ -54,7 +54,7 @@ public void ShouldValidateMinLengthFacet()
5454
}
5555

5656
[TestMethod]
57-
57+
5858
public void ShouldConvertMinLengthFacetToGraph()
5959
{
6060
RDFMinLengthFacet facet = new RDFMinLengthFacet(6);

RDFSharp.Test/Model/Facets/RDFPatternFacetTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class RDFPatternFacetTest
2525
{
2626
#region Tests
2727
[TestMethod]
28-
28+
2929
public void ShouldCreatePatternFacet()
3030
{
3131
RDFPatternFacet facet = new RDFPatternFacet("^ex");
@@ -36,7 +36,7 @@ public void ShouldCreatePatternFacet()
3636
}
3737

3838
[TestMethod]
39-
39+
4040
public void ShouldValidatePatternFacet()
4141
{
4242
RDFPatternFacet facet = new RDFPatternFacet("^ex");
@@ -53,7 +53,7 @@ public void ShouldValidatePatternFacet()
5353
}
5454

5555
[TestMethod]
56-
56+
5757
public void ShouldConvertPatternFacetToGraph()
5858
{
5959
RDFPatternFacet facet = new RDFPatternFacet("^ex");

RDFSharp.Test/Model/RDFCollectionTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ public void ShouldReifyCollectionWithOneItem(RDFModelEnums.RDFItemTypes itemType
238238
Assert.IsNotNull(graph);
239239
Assert.AreEqual(3, graph.TriplesCount);
240240
Assert.IsTrue(graph.IndexedTriples.ContainsKey(new RDFTriple(coll.ReificationSubject, RDFVocabulary.RDF.TYPE, RDFVocabulary.RDF.LIST).TripleID));
241-
241+
242242
switch (itemType)
243243
{
244244
case RDFModelEnums.RDFItemTypes.Literal:
@@ -258,12 +258,12 @@ public void ShouldReifyCollectionWithTwoItems(RDFModelEnums.RDFItemTypes itemTyp
258258
{
259259
RDFCollection coll = new RDFCollection(itemType);
260260
if (itemType == RDFModelEnums.RDFItemTypes.Literal)
261-
{
261+
{
262262
coll.AddItem(new RDFPlainLiteral("lit1"));
263263
coll.AddItem(new RDFPlainLiteral("lit2"));
264264
}
265265
else
266-
{
266+
{
267267
coll.AddItem(new RDFResource("http://item1/"));
268268
coll.AddItem(new RDFResource("http://item2/"));
269269
}

RDFSharp.Test/Model/RDFContainerTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@ public void ShouldAddItemsToContainer(RDFModelEnums.RDFContainerTypes containerT
8787
{
8888
RDFContainer cont = new RDFContainer(containerType, itemType);
8989
if (itemType == RDFModelEnums.RDFItemTypes.Literal)
90-
{
90+
{
9191
cont.AddItem(new RDFPlainLiteral("lit"));
9292
cont.AddItem(new RDFPlainLiteral("lit"));
9393
}
9494
else
95-
{
95+
{
9696
cont.AddItem(new RDFResource("http://item/"));
9797
cont.AddItem(new RDFResource("http://item/"));
9898
}
@@ -124,7 +124,7 @@ public void ShouldNotAddItemsToContainerBecauseWrongType(RDFModelEnums.RDFContai
124124
cont.AddItem(new RDFResource("http://item/"));
125125
else
126126
cont.AddItem(new RDFPlainLiteral("lit"));
127-
127+
128128
Assert.AreEqual(0, cont.ItemsCount);
129129
}
130130

0 commit comments

Comments
 (0)