XSD – Attribute

  • Post author:
  • Post category:XSD
  • Post comments:1 Comment

Attribute represents the attribute of an XML element. XSD defines it as a simple type. Syntax <xs:attribute name = "attribute-name" type = "attribute-type"/> attribute-nameName of the Attribute. For example,<xs:attribute name…

Continue ReadingXSD – Attribute

RSpec Tutorial

  • Post author:
  • Post category:RSpec
  • Post comments:0 Comments

RSpec is a unit test framework for the Ruby programming language. RSpec is different than traditional xUnit frameworks like JUnit because RSpec is a Behavior driven development tool. What this…

Continue ReadingRSpec Tutorial

XSD – Element

  • Post author:
  • Post category:XSD
  • Post comments:1 Comment

Simple Element is an XML element which can only have text. It can not contain any attribute. Syntax <xs:element name = "element-name" type = "element-type"/> element-nameName of the XML Element.…

Continue ReadingXSD – Element