angular.js/test/moveToAngularCom/Base64Test.js

5 lines
157 B
JavaScript

Base64Test = TestCase('Base64Test');
Base64Test.prototype.testEncodeDecode = function(){
assertEquals(Base64.decode(Base64.encode('hello')), 'hello');
};