Flutter Engine
The Flutter Engine
build_fuchsia_artifacts_test.py
Go to the documentation of this file.
1#!/usr/bin/env vpython3
2
3import unittest
4
5import build_fuchsia_artifacts
6
7
8class BuildFuchsiaArtifactsTest(unittest.TestCase):
9
11 # It's expected to update this test each time the fuchsia_target_api_level
12 # in //flutter/build/config/fuchsia/gn_configs.gni is changed, so we don't
13 # accidentally publish the artifacts with an incorrect api level suffix.
14 self.assertEqual(build_fuchsia_artifacts.ReadTargetAPILevel(), '18')
15
16
17if __name__ == '__main__':
18 unittest.main()