class LeanTesting::PlatformHandler

Attributes

browsers[R]
devices[R]
os[R]
types[R]

Public Class Methods

new(origin) click to toggle source
Calls superclass method LeanTesting::EntityHandler::new
# File lib/Handler/Platform/PlatformHandler.rb, line 14
def initialize(origin)
        super

        @types               = PlatformTypesHandler.new(origin)
        @devices     = PlatformDevicesHandler.new(origin)
        @os                  = PlatformOSHandler.new(origin)
        @browsers    = PlatformBrowsersHandler.new(origin)
end