The problem is what size the tab title should use. You can define your title as described and set a minimum width for your grid. This will likely have the effect you are looking for.
<Grid MinWidth="250">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<TextBlock Text="Test on the left"/>
<TextBlock Grid.Column="1" Text="Right" HorizontalAligment="Right" />
</Grid>
GroupBox HeaderTemplate -property.