Exemplo n.º 1
0
        public void BindClrType_BuilderIsNull_ArgumentNullException()
        {
            // arrange
            // act
            Action action = () =>
                            SchemaBuilderExtensions.BindClrType <int, StringType>(null);

            // assert
            Assert.Throws <ArgumentNullException>(action);
        }