MartinWittemann wrote
> Hey,
> do you still have the problem? What did you exactly do to get that problem
> based on which qooxdoo version?
> Regards,
> Martin

Yes, I am using version 4.1
The code (is coffee script but I think you get it) it occurs in is:

qx.Class.define "genpres.test.login.LoginTest",
  extend: qx.dev.unit.TestCase
  include: qx.dev.unit.MMock

  members:
    _loginPage: null

    setUp: ->
      @_loginPage = new genpres.page.login.LoginPage()
      @_loginPage._initialize()

    tearDown: ->
      @_loginPage.dispose()


    "test: application login is only called when a user and password is
entered": ->
      lpg = @_loginPage
      spy = @spy ->

      lpg.addListener 'login', spy, @
      lpg.tapLoginButton()

      @assertNotCalled spy

      lpg.setUser "user"
      lpg.setPassword "password"
      #lpg.tapLoginButton()

      @assertCalled spy


    'test: login with valid user and password logged in event is triggered':
->
      lpg = @_loginPage
      spy = @spy ->

      lpg.addListener 'logged_in', spy, @

      lpg.setUser 'Admin'
      lpg.setPassword 'Admin'
      lpg.tapLoginButton()
      lpg.tapLoginButton()

      @assertCalled spy



--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Test-error-theme-is-null-tp7586523p7586599.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to