Esempio n. 1
0
 def test_pythonvalue(self):
     instance = builtins.Base64Binary()
     assert instance.pythonvalue(b"aG9p") == b"hoi"
Esempio n. 2
0
 def test_pythonvalue(self):
     instance = builtins.Base64Binary()
     assert instance.pythonvalue(b'aG9p') == b'hoi'
Esempio n. 3
0
 def test_xmlvalue(self):
     instance = builtins.Base64Binary()
     assert instance.xmlvalue(b"hoi") == b"aG9p"
Esempio n. 4
0
 def test_xmlvalue(self):
     instance = builtins.Base64Binary()
     assert instance.xmlvalue(b'hoi') == b'aG9p'