>>> from __future__ import print_function
>>> from cpe.comp.cpecomp import CPEComponent
>>> from cpe.comp.cpecomp_anyvalue import CPEComponentAnyValue

-------------------------------------------
Test for __init__(self, comp_str)
-------------------------------------------

TEST:
>>> c = CPEComponentAnyValue()


-------------------------------------------
Test for __eq__(self, comp_str)
-------------------------------------------

TEST: two equal components
>>> c = CPEComponentAnyValue()
>>> c == c
True


TEST: two equal components
>>> value = "microsoft"
>>> c = CPEComponent(value)
>>> c2 = CPEComponentAnyValue()
>>> c == c2
False


-------------------------------------------
Test for __repr__(self, comp_str)
-------------------------------------------

TEST:
>>> c = CPEComponentAnyValue()
>>> c
CPEComponentAnyValue()


-------------------------------------------
Test for __str__(self, comp_str)
-------------------------------------------

TEST:
>>> c = CPEComponentAnyValue()
>>> print(c)
<ANY>
