Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

testing

testing develop

// Add Toolbar Menus
function testing() {
	global $wp_admin_bar;

	$args = array(
		'id'     => '2',
		'title'  => __( 'Testing', 'text_domain' ),
		'group'  => true,
	);
	$wp_admin_bar->add_menu( $args );

}
add_action( 'wp_before_admin_bar_render', 'testing', 999 );