Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
io.flutter.embedding.engine.FlutterEngineGroupCacheTest Class Reference

Public Member Functions

void setup ()
 
void itHoldsFlutterEngineGroups ()
 
void itQueriesFlutterEngineGroupExistence ()
 
void itRemovesFlutterEngineGroups ()
 
void itRemovesAllFlutterEngineGroups ()
 

Detailed Description

Definition at line 21 of file FlutterEngineGroupCacheTest.java.

Member Function Documentation

◆ itHoldsFlutterEngineGroups()

void io.flutter.embedding.engine.FlutterEngineGroupCacheTest.itHoldsFlutterEngineGroups ( )
inline

Definition at line 37 of file FlutterEngineGroupCacheTest.java.

37 {
38 // --- Test Setup ---
39 FlutterEngineGroupCache cache = new FlutterEngineGroupCache();
40
41 // --- Execute Test ---
42 cache.put("my_flutter_engine_group", flutterEngineGroup);
43
44 // --- Verify Results ---
45 assertEquals(flutterEngineGroup, cache.get("my_flutter_engine_group"));
46 }
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace Enable an endless trace buffer The default is a ring buffer This is useful when very old events need to viewed For during application launch Memory usage will continue to grow indefinitely however Start app with an specific route defined on the framework flutter assets Path to the Flutter assets directory enable service port Allow the VM service to fallback to automatic port selection if binding to a specified port fails trace Trace early application lifecycle Automatically switches to an endless trace buffer trace skia Filters out all Skia trace event categories except those that are specified in this comma separated list dump skp on shader Automatically dump the skp that triggers new shader compilations This is useful for writing custom ShaderWarmUp to reduce jank By this is not enabled to reduce the overhead purge persistent cache
Definition switches.h:191

◆ itQueriesFlutterEngineGroupExistence()

void io.flutter.embedding.engine.FlutterEngineGroupCacheTest.itQueriesFlutterEngineGroupExistence ( )
inline

Definition at line 49 of file FlutterEngineGroupCacheTest.java.

49 {
50 // --- Test Setup ---
51 FlutterEngineGroupCache cache = new FlutterEngineGroupCache();
52
53 // --- Execute Test ---
54 assertFalse(cache.contains("my_flutter_engine_group"));
55
56 cache.put("my_flutter_engine_group", flutterEngineGroup);
57
58 // --- Verify Results ---
59 assertTrue(cache.contains("my_flutter_engine_group"));
60 }
bool contains(double x, double y)
Definition path.cc:287

◆ itRemovesAllFlutterEngineGroups()

void io.flutter.embedding.engine.FlutterEngineGroupCacheTest.itRemovesAllFlutterEngineGroups ( )
inline

Definition at line 76 of file FlutterEngineGroupCacheTest.java.

76 {
77 // --- Test Setup ---
78 FlutterEngineGroup flutterEngineGroup1 =
79 new FlutterEngineGroup(ApplicationProvider.getApplicationContext());
80 FlutterEngineGroup flutterEngineGroup2 =
81 new FlutterEngineGroup(ApplicationProvider.getApplicationContext());
82 FlutterEngineGroupCache cache = new FlutterEngineGroupCache();
83
84 // --- Execute Test ---
85 cache.put("my_flutter_engine_group", flutterEngineGroup1);
86 cache.put("my_flutter_engine_group_2", flutterEngineGroup2);
87
88 // --- Verify Results ---
89 assertEquals(flutterEngineGroup1, cache.get("my_flutter_engine_group"));
90 assertEquals(flutterEngineGroup2, cache.get("my_flutter_engine_group_2"));
91
92 cache.clear();
93
94 // --- Verify Results ---
95 assertNull(cache.get("my_flutter_engine_group"));
96 assertNull(cache.get("my_flutter_engine_group_2"));
97 }

◆ itRemovesFlutterEngineGroups()

void io.flutter.embedding.engine.FlutterEngineGroupCacheTest.itRemovesFlutterEngineGroups ( )
inline

Definition at line 63 of file FlutterEngineGroupCacheTest.java.

63 {
64 // --- Test Setup ---
65 FlutterEngineGroupCache cache = new FlutterEngineGroupCache();
66
67 // --- Execute Test ---
68 cache.put("my_flutter_engine_group", flutterEngineGroup);
69 cache.remove("my_flutter_engine_group");
70
71 // --- Verify Results ---
72 assertNull(cache.get("my_flutter_engine_group"));
73 }

◆ setup()

void io.flutter.embedding.engine.FlutterEngineGroupCacheTest.setup ( )
inline

Definition at line 26 of file FlutterEngineGroupCacheTest.java.

26 {
27 // Create a mocked FlutterEngineGroup that provided to run this test case
28 FlutterInjector.reset();
29 FlutterLoader mockFlutterLoader = mock(FlutterLoader.class);
30 when(mockFlutterLoader.findAppBundlePath()).thenReturn("default_flutter_assets/path");
31 FlutterInjector.setInstance(
32 new FlutterInjector.Builder().setFlutterLoader(mockFlutterLoader).build());
33 flutterEngineGroup = mock(FlutterEngineGroup.class);
34 }

The documentation for this class was generated from the following file: