Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
all_tests.py
Go to the documentation of this file.
1#!/usr/bin/env python3
2# Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
3# for details. All rights reserved. Use of this source code is governed by a
4# BSD-style license that can be found in the LICENSE file.
5"""This entry point runs all script tests."""
6
7import logging.config
8import unittest
9
10if __name__ == '__main__':
11 logging.config.fileConfig('logging.conf')
12 suite = unittest.TestLoader().loadTestsFromNames([
13 'templateloader_test', 'pegparser_test', 'idlparser_test',
14 'idlnode_test', 'idlrenderer_test', 'database_test',
15 'databasebuilder_test', 'emitter_test', 'dartgenerator_test',
16 'multiemitter_test'
17 ])
18 unittest.TextTestRunner().run(suite)
Definition run.py:1