This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//gwt option instructions of gwt 2.5rc | |
-port Specifies the TCP port for the embedded web server (defaults to 8888) | |
-whitelist Allows the user to browse URLs that match the specified regexes (comma or space separated) | |
-blacklist Prevents the user browsing URLs that match the specified regexes (comma or space separated) | |
-logdir Logs to a file in the given directory, as well as graphically | |
-logLevel The level of logging detail: ERROR, WARN, INFO, TRACE, DEBUG, SPAM, or ALL | |
-gen Debugging: causes normally-transient generated types to be saved in the specified directory | |
-codeServerPort Specifies the TCP port for the code server (defaults to 9997) | |
-war The directory into which deployable output files will be written (defaults to 'war') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'test/unit' | |
class MyTest < Test::Unit::TestCase | |
def test_myTestCase | |
test = "here comes" | |
# test = nil | |
assert(test, msg = (nomsg = true;nil)) | |
end | |
NewerOlder