Restructure pkg/unittest and pkg/webdriver to follow the pub conventions.
This means all imports of unittest in our test code had to change to include 'lib' in the path.
While doing that change I changed the library/imports to the new syntax in the affected files.
Review URL: https://codereview.chromium.org//11301046

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/logging@14443 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/test/logging_test.dart b/test/logging_test.dart
index a3e1cd5..37518b1 100644
--- a/test/logging_test.dart
+++ b/test/logging_test.dart
@@ -3,11 +3,11 @@
 // BSD-style license that can be found in the LICENSE file.
 
 
-#library('logging_test');
+library logging_test;
 
 // TODO(rnystrom): Use "package:" import when test.dart supports it (#4968).
-#import('../lib/logging.dart');
-#import('../../../pkg/unittest/unittest.dart');
+import '../lib/logging.dart';
+import '../../../pkg/unittest/lib/unittest.dart';
 
 main() {
   test('level comparison is a valid comparator', () {