System.Collections.ArrayList.ShouldNotBeNull()

Here are the examples of the csharp api class System.Collections.ArrayList.ShouldNotBeNull() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: Bender
Source File: ArrayTests.cs
[Test]
        public void should_use_xml_serializer_non_generic_item_type_name_format_by_default()
        {
            Deserialize.Xml<ArrayList>("<ArrayOfAnyType />").ShouldNotBeNull();
        }

2. Example

Project: Bender
Source File: ArrayTests.cs
[Test]
        public void should_use_configured_non_generic_item_type_name_format()
        {
            Deserialize.Xml<ArrayList>("<ArrayOfYada />",
                x => x.WithDefaultItemTypeName("Yada")).ShouldNotBeNull();
        }