0
I Use This!
Inactive

Commits : Listings

Analyzed about 6 hours ago. based on code collected about 9 hours ago.
Apr 24, 2023 — Apr 24, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fixed the problem with parsing DateTime values of type Utc More... over 11 years ago
Cleaning up test data after merging 'namespace-bug' into 'nullable-types' indeed shows that the bug has been fixed. Hooray! :)
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Merged the branch 'namespace-bug' into 'nullable-types' to see whether serialization of nullable types are fixed in the 'namespace-bug' branch.
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Added some more nullable types to NullableSample2, plus a [YAXFormat("o")] for the Nullable<DateTime>, which trips the serializer to think the type is a string. This breaks DeserializationTests.DesNullableSample2Test and SerializationTests.NullableSample2Test.
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Added support for YAXNodeTypes.Content in serializing dictionary key and value items. More... over 11 years ago
Cleaning up unit-tests More... over 11 years ago
Replaced all attribute creations with a new namespace-safe attribute addition extension method More... over 11 years ago
Fixed the Nullable type mismatch problem. More... over 11 years ago
Migrating the branch tests to NUnit More... over 11 years ago
Merge branch 'master' into namespace-bug More... over 11 years ago
Fixed naming XML-entities based on W3C naming standards More... over 11 years ago
Removed VS Test runner files Updated .gitignore to ignore NCrunch files More... over 11 years ago
Replaced the YAXLibTests project file with a regular .NET 3.5 library project file.
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Removed unused System.Data.* references
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Merged 'origin/master' into 'attributes'
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Merged 'origin/master' into 'realtype'
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Expanded parameter names for readability
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Moved the parameters around so "expected" and "actual" are placed correctly in the assertion
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Replaced Assert.IsNull(x) with Assert.That(x, Is.Null) for improved readability.
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Replaced Assert.IsNotNull(x) with Assert.That(x, Is.Not.Null) for improved readability.
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Replaced Assert.IsFalse(x) with Assert.That(x, Is.False) for improved readability
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Replaced Assert.IsTrue(x) with Assert.That(x, Is.True) for readability.
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Replaced Assert.AreEqual(x, y) with Assert.That(y, Is.EqualTo(x))
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Replaced more old-style Asserts with new-style Assert.That() which will give more meaningful error messages if they fail and leads to more readable code.
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Replaced Assert.AreEqual with Assert.That so the order of "actual" and "expected" are corrected with the added bonus of having a more fluent syntax that is easier to read.
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Enforce culture to InvariantCulture so ToString() creates the same string regardless of which computer the tests are being run on
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Replaced Microsoft.VisualStudio.TestTools.UnitTesting.* with NUnit.Framework.*
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Added NuGet with Package Restore to the solution
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Merge remote-tracking branch 'upstream/master' into namespace-bug
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago
Use the serialized output instead of a string constant to perhaps make debugging the deserialization problem easier.
Asbjørn Ulsberg
as asbjornu
More... over 11 years ago